TutorialLinAlgSetThreshold.cpp
Go to the documentation of this file.
1 #include <iostream>
2 #include <Eigen/Dense>
3 
4 using namespace std;
5 using namespace Eigen;
6 
7 int main()
8 {
9  Matrix2d A;
10  A << 2, 1,
11  2, 0.9999999999;
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 }
FullPivLU & setThreshold(const RealScalar &threshold)
Definition: FullPivLU.h:292
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
Definition: Half.h:150
Array< double, 1, 3 > e(1./3., 0.5, 2.)
cout<< "Here is the matrix m:"<< endl<< m<< endl;Eigen::FullPivLU< Matrix5x3 > lu(m)
LU decomposition of a matrix with complete pivoting, and related features.
Index rank() const
Definition: FullPivLU.h:332


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:51:19