From 177500f37e8f1416caba5796aea1f6ffbc725fd9 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sat, 21 Feb 2009 14:30:49 +0000 Subject: fix typo found by markusfroeb (forum) --- doc/C05_TutorialLinearAlgebra.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/C05_TutorialLinearAlgebra.dox b/doc/C05_TutorialLinearAlgebra.dox index 1b584e103..7ff0c048e 100644 --- a/doc/C05_TutorialLinearAlgebra.dox +++ b/doc/C05_TutorialLinearAlgebra.dox @@ -155,7 +155,7 @@ Alternatively, you can construct a named LU decomposition, which allows you to r \code #include MatrixXf A = MatrixXf::Random(20,20); -Eigen::LUDecomposition lu(A); +Eigen::LU lu(A); cout << "The rank of A is" << lu.rank() << endl; if(lu.isInvertible()) { cout << "A is invertible, its inverse is:" << endl << lu.inverse() << endl; -- cgit v1.2.3