https://github.com/PX4/eigen
Eigen在Qt中的配置(博主亲测)
1、Qt中调用
//.pro中--------
INCLUDEPATH += \
$$PWD/eigen-master
//.cpp中-------
#include <Eigen/Dense>
using namespace Eigen;
Matrix2d a;
MatrixXd b(2,2);
Vector3d v(1,2,3);