aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/HouseholderQR_solve.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-27 18:50:39 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-27 18:50:39 +0200
commit7579360672c7e149eeed5a2f777ed36305885aea (patch)
treeb8625b61945b8e9647093982f42f3df8fa42b73f /doc/snippets/HouseholderQR_solve.cpp
parent5f3606bce9c1283e9f2e8b489c4baccfa2916d42 (diff)
fix compilation of the doc and started a page dedicated to high performance and or BLAS users
Diffstat (limited to 'doc/snippets/HouseholderQR_solve.cpp')
-rw-r--r--doc/snippets/HouseholderQR_solve.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/HouseholderQR_solve.cpp b/doc/snippets/HouseholderQR_solve.cpp
index aa9404951..429bd81e3 100644
--- a/doc/snippets/HouseholderQR_solve.cpp
+++ b/doc/snippets/HouseholderQR_solve.cpp
@@ -4,6 +4,6 @@ Matrix3f y = Matrix3f::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is the matrix y:" << endl << y << endl;
Matrix3f x;
-m.householderQr().solve(y, &x));
+m.householderQr().solve(y, &x);
assert(y.isApprox(m*x));
cout << "Here is a solution x to the equation mx=y:" << endl << x << endl;