aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/TutorialLinearAlgebra.dox
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-12-06 23:20:30 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-12-06 23:20:30 +0000
commit93c1f629791eb7ca8fc1f951fa5e4f568f7c16ce (patch)
treeaf85e6723e97219515c381ed60cca02a1e0a3028 /doc/TutorialLinearAlgebra.dox
parent2b20da624a4967334fbf18209a2bbec7b5605d49 (diff)
Use an aligned IOFormat in the docs
Diffstat (limited to 'doc/TutorialLinearAlgebra.dox')
-rw-r--r--doc/TutorialLinearAlgebra.dox7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/TutorialLinearAlgebra.dox b/doc/TutorialLinearAlgebra.dox
index d7a70abc1..7dd786e98 100644
--- a/doc/TutorialLinearAlgebra.dox
+++ b/doc/TutorialLinearAlgebra.dox
@@ -158,8 +158,11 @@ Eigen::LUDecomposition<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;
-cout << "Here's a matrix whose columns form a basis of the kernel a.k.a. nullspace of A:"
- << endl << lu.kernel() << endl;
+}
+else {
+ cout << "Here's a matrix whose columns form a basis of the kernel a.k.a. nullspace of A:"
+ << endl << lu.kernel() << endl;
+}
\endcode
\sa LU_Module, LU::solve(), class LU