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;