mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
sync the documentation examples
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user