aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/Tutorial_PartialLU_solve.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-10-26 14:37:43 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-10-26 14:37:43 -0400
commit1f1c04cac1d8a87cbb34741d141df646b2da2827 (patch)
treec4a6c6dbac0f6d0cf337c778f2d03849883c0028 /doc/examples/Tutorial_PartialLU_solve.cpp
parent44cdbaba4d084b31854ed5bec58f2887f0479b81 (diff)
sync the documentation examples
Diffstat (limited to 'doc/examples/Tutorial_PartialLU_solve.cpp')
-rw-r--r--doc/examples/Tutorial_PartialLU_solve.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/examples/Tutorial_PartialLU_solve.cpp b/doc/examples/Tutorial_PartialLU_solve.cpp
index 80c393f9a..4cbd8c10d 100644
--- a/doc/examples/Tutorial_PartialLU_solve.cpp
+++ b/doc/examples/Tutorial_PartialLU_solve.cpp
@@ -12,7 +12,6 @@ int main(int, char *[])
b << 3, 3, 4;
cout << "Here is the matrix A:" << endl << A << endl;
cout << "Here is the vector b:" << endl << b << endl;
- Vector3f x;
- A.partialLu().solve(b, &x);
+ Vector3f x = A.partialLu().solve(b);
cout << "The solution is:" << endl << x << endl;
}