指定调用 std::copy 的小数精度
Specifying the decimal precision for a call to std::copy
我有以下将向量保存到 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
中的数字以可变精度保存,none 中的数字以我想要的精度(小数点后 10 位)保存。
我知道函数 std::setprecision
。但是这个函数,根据docs,
should only be used as a stream manipulator.
(实际上我不确定我是否正确解释了 "stream manipulator";我假设这意味着我不能在当前编写的函数中使用它。)
有没有办法让我使用 copy
函数指定小数精度?如果不是,我应该如何摆脱 copy
以便我可以在上面的函数中使用 setprecision
?
您可以拨打
os.precision(10);
复制前
我有以下将向量保存到 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
中的数字以可变精度保存,none 中的数字以我想要的精度(小数点后 10 位)保存。
我知道函数 std::setprecision
。但是这个函数,根据docs,
should only be used as a stream manipulator.
(实际上我不确定我是否正确解释了 "stream manipulator";我假设这意味着我不能在当前编写的函数中使用它。)
有没有办法让我使用 copy
函数指定小数精度?如果不是,我应该如何摆脱 copy
以便我可以在上面的函数中使用 setprecision
?
您可以拨打
os.precision(10);
复制前