From 1f1c04cac1d8a87cbb34741d141df646b2da2827 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 26 Oct 2009 14:37:43 -0400 Subject: sync the documentation examples --- doc/examples/Tutorial_PartialLU_solve.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'doc/examples/Tutorial_PartialLU_solve.cpp') 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; } -- cgit v1.2.3