我有以下功能将矢量保存到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,
只能用作流操纵器。
(我实际上不确定我是否正确地解释了“流操作器”;我假设这意味着我不能在我的函数中使用它,因为当前已经写过了。)
我有办法使用copy
函数指定小数精度吗?如果没有,我应该如何摆脱copy
,以便我可以在上面的函数中使用setprecision
?
答案 0 :(得分:4)
你可以打电话
os.precision(10);
复制之前。