使用 yaml-cpp 发出时如何格式化数字?

发布于 2024-11-17 05:52:41 字数 232 浏览 2 评论 0原文

我需要以固定宽度的科学记数法输出数据,如下例所示。有什么办法可以实现吗?

数据:
- [+0.000000e+00、+0.100000e+00、+2.400000e+00、+3.600000e+00、+4.800000e+00]
- [+1.200000e+00、+1.300000e+00、+2.400000e+00、+4.800000e+00、+6.000000e+00]

-SW

I need to output my data in scientific notation with fixed width like the sample below. Is there any way to achieve it?

data:
- [+0.000000e+00, +0.100000e+00, +2.400000e+00, +3.600000e+00, +4.800000e+00]
- [+1.200000e+00, +1.300000e+00, +2.400000e+00, +4.800000e+00, +6.000000e+00]

-SW

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假装爱人 2024-11-24 05:52:41

为您的数据创建一个包装类:

struct Fixed {
   Fixed(double v = 0): value(v) {}
   double value;

   std::string ToString() const {
      /* write something that outputs this in the format you want */
   }
};

并重载运算符<<

YAML::Emitter& operator << (YAML::Emitter& out, const Fixed& f) {
   out << f.ToString();
   return out;
}

然后它将按您的预期工作:

std::vector<Fixed> data = /* ... */;
YAML::Emitter out;
out << data;  // etc

Make a wrapper class for your data:

struct Fixed {
   Fixed(double v = 0): value(v) {}
   double value;

   std::string ToString() const {
      /* write something that outputs this in the format you want */
   }
};

and overload operator <<:

YAML::Emitter& operator << (YAML::Emitter& out, const Fixed& f) {
   out << f.ToString();
   return out;
}

Then it'll work as you'd expect:

std::vector<Fixed> data = /* ... */;
YAML::Emitter out;
out << data;  // etc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文