blob: 4873d0d347a999051de36eea588805c9f219fa0a [file] [log] [blame]
Benoit Jacob62ec1dd2008-07-15 23:56:17 +00001Matrix3d m = Matrix3d::random();
2cout << "Here is the matrix m:" << endl << m << endl;
3Matrix3d inv;
4m.computeInverse(&inv);
5cout << "Its inverse is:" << endl << inv << endl;