Eigen库学习笔记(十一)读写矩阵文件
Eigen库学习笔记(十一)读写矩阵文件
1、写txt文件2、读写的一些选项
由于调试时看不到矩阵的尺寸和数值,所以可以通过保存文件的形式查看矩阵。
1、写txt文件
代码:
void test_save_txt(Eigen::MatrixXf mat, string filename)
{
ofstream outfile(filename, ios::trunc);
outfile << mat;
outfile.close();
}
测试用例
Eigen::MatrixXf mat(24, 3);
mat <<
50, 25, 25,
100, 50, 50,
150, 75, 75,
75, 50, 50,
150, 100, 100,
225, 150, 150,
100, 75, 50,
200, 150, 100,
300, 22
共有 0 条评论