Tutorial_solve_singular.cpp revision c981c48f5bc9aefeffc0bcb0cc3934c2fae179dd
1Matrix3f A;
2Vector3f b;
3A << 1,2,3,  4,5,6,  7,8,9;
4b << 3, 3, 4;
5cout << "Here is the matrix A:" << endl << A << endl;
6cout << "Here is the vector b:" << endl << b << endl;
7Vector3f x;
8x = A.lu().solve(b);
9cout << "The solution is:" << endl << x << endl;
10