source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/examples/TutorialLinAlgSetThreshold.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 377 bytes
Line 
1#include <iostream>
2#include <Eigen/Dense>
3
4using namespace std;
5using namespace Eigen;
6
7int main()
8{
9 Matrix2d A;
10 A << 2, 1,
11 2, 0.9999999999;
12 FullPivLU<Matrix2d> lu(A);
13 cout << "By default, the rank of A is found to be " << lu.rank() << endl;
14 lu.setThreshold(1e-5);
15 cout << "With threshold 1e-5, the rank of A is found to be " << lu.rank() << endl;
16}
Note: See TracBrowser for help on using the repository browser.