sync the documentation examples

This commit is contained in:
Benoit Jacob
2009-10-26 14:37:43 -04:00
parent 44cdbaba4d
commit 1f1c04cac1
9 changed files with 30 additions and 16 deletions

View File

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