blob: ba7377a4a6f501ecf49de2dbce0dd0dfab7632eb [file] [log] [blame]
Gael Guennebaudc10f0692008-07-21 00:34:46 +00001Matrix3d m = Matrix3d::Random();
Benoit Jacob62ec1dd2008-07-15 23:56:17 +00002cout << "Here is the matrix m:" << endl << m << endl;
3Matrix3d inv;
4m.computeInverse(&inv);
5cout << "Its inverse is:" << endl << inv << endl;