source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/Tutorial_solve_matrix_inverse.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 146 bytes
Line 
1Matrix3f A;
2Vector3f b;
3A << 1,2,3, 4,5,6, 7,8,10;
4b << 3, 3, 4;
5Vector3f x = A.inverse() * b;
6cout << "The solution is:" << endl << x << endl;
Note: See TracBrowser for help on using the repository browser.