blob: 3956b13a39dfe35031cf3a4b411051604618113e [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001#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}