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:290
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
Definition: BFloat16.h:88
Matrix< SCALARA, Dynamic, Dynamic, opt_A > A
Definition: bench_gemm.cpp:48
Index rank() const
Definition: FullPivLU.h:330
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.


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:40:38