Eigen的LLT分解
生活随笔
收集整理的這篇文章主要介紹了
Eigen的LLT分解
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
Cholesky 分解是把一個(gè)對(duì)稱正定的矩陣表示成一個(gè)下三角矩陣L和其轉(zhuǎn)置的乘積的分解。Eigen的LLT分解實(shí)現(xiàn)了Cholesky 分解。代碼如下:
#include<Eigen/Cholesky> int main(int argc, char** argv) {Eigen::Matrix2d down;down<<1,0,2,1;//P<<1,2// 2,5Eigen::Matrix2d P=down*down.transpose();std::cout<<"P"<<P<<std::endl;Eigen::Matrix2d ml=P.llt().matrixL();Eigen::Matrix2d testP=ml*ml.transpose();std::cout<<"mllt"<<ml<<std::endl;std::cout<<"testP"<<testP<<std::endl;return 0; }參考
https://blog.csdn.net/hanshihao1336295654/article/details/83422496
https://blog.csdn.net/u013354805/article/details/48250547
總結(jié)
以上是生活随笔為你收集整理的Eigen的LLT分解的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 工具栏的打印图标不见了_我的电脑右下角任
- 下一篇: UGUI Text组件上动态显示Emoj