我正在尝试使用Eigen库学习C ++。
int main(){
MatrixXf m = MatrixXf::Random(30,3);
cout << "Here is the matrix m:\n" << m << endl;
cout << "m" << endl << colm(m) << endl;
return 0;
}
如何将m
导出到文本文件(我已搜索过文档
还没有提到写作功能?)
答案 0 :(得分:15)
如果你可以在cout上写它,它适用于任何std :: ostream:
#include <fstream>
int main()
{
std::ofstream file("test.txt");
if (file.is_open())
{
MatrixXf m = MatrixXf::Random(30,3);
file << "Here is the matrix m:\n" << m << '\n';
file << "m" << '\n' << colm(m) << '\n';
}
}
答案 1 :(得分:0)
我写了这个函数:
void get_EigentoData(MatrixXf& src, char* pathAndName)
{
ofstream fichier(pathAndName, ios::out | ios::trunc);
if(fichier) // si l'ouverture a réussi
{
// instructions
fichier << "Here is the matrix src:\n" << src << "\n";
fichier.close(); // on referme le fichier
}
else // sinon
{
cerr << "Erreur à l'ouverture !" << endl;
}
}