mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
JacobiSVD:
* fix preallocating constructors, allocate U and V of the right size for computation options * complete documentation and internal comments * improve unit test, test inf/nan values
This commit is contained in:
9
doc/snippets/JacobiSVD_basic.cpp
Normal file
9
doc/snippets/JacobiSVD_basic.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
MatrixXf m = MatrixXf::Random(3,2);
|
||||
cout << "Here is the matrix m:" << endl << m << endl;
|
||||
JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV);
|
||||
cout << "Its singular values are:" << endl << svd.singularValues() << endl;
|
||||
cout << "Its left singular vectors are the columns of the thin U matrix:" << endl << svd.matrixU() << endl;
|
||||
cout << "Its right singular vectors are the columns of the thin V matrix:" << endl << svd.matrixV() << endl;
|
||||
Vector3f rhs(1, 0, 0);
|
||||
cout << "Now consider this rhs vector:" << endl << rhs << endl;
|
||||
cout << "A least-squares solution of m*x = rhs is:" << endl << svd.solve(rhs) << endl;
|
||||
Reference in New Issue
Block a user