gpt4 book ai didi

c++ - 指定调用 std::copy 的小数精度

转载 作者:行者123 更新时间:2023-11-27 22:55:56 26 4
gpt4 key购买 nike

我有以下将 vector 保存到 CSV 文件的函数:

#include <math.h>
#include <vector>
#include <string>
#include <fstream>
#include <iostream>
#include <iterator>
using namespace std;

bool save_vector(vector<double>* pdata, size_t length,
const string& file_path)
{
ofstream os(file_path.c_str(), ios::binary | ios::out);
if (!os.is_open())
{
cout << "Failure!" << endl;
return false;
}
copy(pdata->begin(), pdata->end(), ostream_iterator<double>(os, ","));
os.close();
return true;
}

在生成的 CSV 文件中,pdata 中的数字以可变精度保存,没有一个以我想要的精度(小数点后 10 位)保存。

我知道函数 std::setprecision。但是这个函数,根据docs ,

should only be used as a stream manipulator.

(我实际上不确定我是否正确解释了“流操纵器”;我假设这意味着我不能在当前编写的函数中使用它。)

有没有一种方法可以让我使用copy 函数来指定小数精度?如果没有,我应该如何摆脱 copy 以便我可以在上面的函数中使用 setprecision

最佳答案

你可以调用

os.precision(10);

在复制之前。

关于c++ - 指定调用 std::copy 的小数精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33093691/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com