码迷,mamicode.com
首页 > 编程语言 > 详细

C++中计算矩阵的行列式

时间:2018-05-12 03:16:17      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:ant   \n   space   c++   std   stream   nan   int()   逆矩阵   

使用eigen库:

求行列式:

#include <iostream>
#include <Eigen/Dense>
using namespace std;
using namespace Eigen;
int main()
{
    Matrix2d c;
     c << 1, 2,
     3, 4;
    //转置、伴随
    std::cout<<c<<std::endl<<std::endl;
    std::cout<<"转置\n"<<c.transpose()<<std::endl<<std::endl;
    std::cout<<"伴随\n"<<c.adjoint()<<std::endl<<std::endl;
    //逆矩阵、行列式
    std::cout << "行列式: " << c.determinant() << std::endl;
    std::cout << "逆矩阵\n" << c.inverse() << std::endl;
}

 

 

 

C++中计算矩阵的行列式

标签:ant   \n   space   c++   std   stream   nan   int()   逆矩阵   

原文地址:https://www.cnblogs.com/wxl845235800/p/9027005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!