aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-06-30 19:27:30 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-06-30 19:27:30 -0400
commit962b30d75e47457b63945663e7a6fed1e085f4d5 (patch)
treec2a989d1f457fc86356d802bdf1ab7317e7db479 /doc/examples
parent97f3c7f2824dfeb4fb440870b218d7a6534e8e44 (diff)
fix linalg tut; remove the old one
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/TutorialLinAlgSetThreshold.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/examples/TutorialLinAlgSetThreshold.cpp b/doc/examples/TutorialLinAlgSetThreshold.cpp
index e0927cf27..3956b13a3 100644
--- a/doc/examples/TutorialLinAlgSetThreshold.cpp
+++ b/doc/examples/TutorialLinAlgSetThreshold.cpp
@@ -7,13 +7,10 @@ using namespace Eigen;
int main()
{
Matrix2d A;
- FullPivLU<Matrix2d> lu;
A << 2, 1,
2, 0.9999999999;
- lu.compute(A);
+ FullPivLU<Matrix2d> lu(A);
cout << "By default, the rank of A is found to be " << lu.rank() << endl;
- cout << "Now recomputing the LU decomposition with threshold 1e-5" << endl;
lu.setThreshold(1e-5);
- lu.compute(A);
- cout << "The rank of A is found to be " << lu.rank() << endl;
+ cout << "With threshold 1e-5, the rank of A is found to be " << lu.rank() << endl;
}