diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/C05_TutorialLinearAlgebra.dox | 2 |
1 files changed, 1 insertions, 1 deletions
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 <Eigen/LU> MatrixXf A = MatrixXf::Random(20,20); -Eigen::LUDecomposition<MatrixXf> lu(A); +Eigen::LU<MatrixXf> 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; |