From 962b30d75e47457b63945663e7a6fed1e085f4d5 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Wed, 30 Jun 2010 19:27:30 -0400 Subject: fix linalg tut; remove the old one --- doc/examples/TutorialLinAlgSetThreshold.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'doc/examples') 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 lu; A << 2, 1, 2, 0.9999999999; - lu.compute(A); + FullPivLU 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; } -- cgit v1.2.3