Use an aligned IOFormat in the docs

This commit is contained in:
Benoit Jacob
2008-12-06 23:20:30 +00:00
parent 2b20da624a
commit 93c1f62979
4 changed files with 11 additions and 4 deletions

View File

@@ -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