1.n阶行列式概念 1)n阶行列式 2.eigen中求行列式值的方法 MatrixXd m;//定义一个浮点数动态矩阵 double result; result=m.determinant(); 注意,eigen3中不能定义MatrixXi m,然后用这个矩阵来求其行列式的值,这样做会出现编译错误 3.验证下eigen求值得正确性 1) 2) 3)