标签:fast svd分解 net 使用 position clu 三角形 atl 特征
一. 矩阵分解:
矩阵分解 (decomposition, factorization)是将矩阵拆解为数个矩阵的乘积,可分为三角分解、满秩分解、QR分解、Jordan分解和SVD(奇异值)分解等,常见的有三种:1)三角分解法 (Triangular Factorization),2)QR 分解法 (QR Factorization),3)奇异值分解法 (Singular Value Decompostion)。
<span style="font-size:18px;">
#include <iostream>
#include <Eigen/Dense>
using namespace std;
using namespace Eigen;
int main()
{
//线性方程求解 Ax =B;
Matrix4d A;
A << 2,-1,-1,1, 1,1,-2,1, 4,-6,2,-2, 3,6,-9,7;
Vector4d B(2,4,4,9);
Vector4d x = A.colPivHouseholderQr().solve(B);
Vector4d x2 = A.llt().solve(B);
Vector4d x3 = A.ldlt().solve(B);
std::cout << "The solution is:\n" << x <<"\n\n"<<x2<<"\n\n"<<x3 <<std::endl;
}
</span>
注意:
我用上面代码计算出来,只有A.colPivHouseholderQr().sole(B),算出来的是正常。其他都是错误,我就先使用这个公式运算吧,等我忙完这一阵子,在来研究一下。
运行结果:
colPivHouseholderQr:
0
-1
-4
-3
llt:
-289.143
448.714
29.9082
3.97959
ldlt:
1.52903
0.1758
-0.340206
0.0423223
除了colPivHouseholderQr、LLT、LDLT,还有以下的函数可以求解线性方程组,请注意精度和速度:解小矩阵(4*4)基本没有速度差别
// Solve Ax = b. Result stored in x. Matlab: x = A \ b.
x = A.ldlt().solve(b)); // A sym. p.s.d. #include <Eigen/Cholesky>
x = A.llt().solve(b)); // A sym. p.d. #include <Eigen/Cholesky>
x = A.lu().solve(b)); // Stable and fast. #include <Eigen/LU>
x = A.qr().solve(b)); // No pivoting. #include <Eigen/QR>
x = A.svd().solve(b)); // Stable, slowest. #include <Eigen/SVD>
// .ldlt() -> .matrixL() and .matrixD()
// .llt() -> .matrixL()
// .lu() -> .matrixL() and .matrixU()
// .qr() -> .matrixQ() and .matrixR()
// .svd() -> .matrixU(), .singularValues(), and .matrixV()
本文转自 ChenYuanshen 的CSDN 博客 :https://blog.csdn.net/u013354805/article/details/48250547?utm_source=copy
标签:fast svd分解 net 使用 position clu 三角形 atl 特征
原文地址:https://www.cnblogs.com/ymd12103410/p/9705792.html