aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
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
parent2b20da624a4967334fbf18209a2bbec7b5605d49 (diff)
Use an aligned IOFormat in the docs
Diffstat (limited to 'doc')
-rw-r--r--doc/CMakeLists.txt2
-rw-r--r--doc/TutorialLinearAlgebra.dox7
-rw-r--r--doc/snippets/compile_snippet.cpp.in2
3 files changed, 7 insertions, 4 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 759c3cf89..d90fc887d 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -25,6 +25,8 @@ configure_file(
set(examples_targets "")
set(snippets_targets "")
+add_definitions("-DEIGEN_DEFAULT_IO_FORMAT=EIGEN_DOCS_IO_FORMAT")
+
add_subdirectory(examples)
add_subdirectory(snippets)
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
diff --git a/doc/snippets/compile_snippet.cpp.in b/doc/snippets/compile_snippet.cpp.in
index 950f06654..3eaee98ac 100644
--- a/doc/snippets/compile_snippet.cpp.in
+++ b/doc/snippets/compile_snippet.cpp.in
@@ -4,13 +4,11 @@
#include <Eigen/Cholesky>
#include <Eigen/Geometry>
-USING_PART_OF_NAMESPACE_EIGEN
using namespace Eigen;
using namespace std;
int main(int, char**)
{
- cout.precision(3);
${snippet_source_code}
return 0;
}