Eigen使用
矩阵计算#include <iostream>#include <Eigen/Dense>using namespace std;using namespace Eigen;int main(){ Matrix2f A, b;// LLT<Matrix2f> llt; A << 2, -1, -1, 3; b << 1, 2, 3, 1; cout << "Here is the matrix A:\n" <
原创
2021-07-29 23:04:55 ·
1504 阅读 ·
0 评论