码迷,mamicode.com
首页 > 其他好文 > 详细

Eigen求矩阵行列式

时间:2018-05-18 22:16:11      阅读:839      评论:0      收藏:0      [点我收藏+]

标签:stream   using   href   iostream   eterm   net   inverse   namespace   博客   

转置、伴随、行列式、逆矩阵

小矩阵(4 * 4及以下)eigen会自动优化,默认采用LU分解,效率不高

#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;
}

有关eigen库的一些基本使用方法 - CSDN博客 https://blog.csdn.net/r1254/article/details/47418871

Eigen求矩阵行列式

标签:stream   using   href   iostream   eterm   net   inverse   namespace   博客   

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

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