Gael Guennebaud | c10f069 | 2008-07-21 00:34:46 +0000 | [diff] [blame] | 1 | Matrix3d m = Matrix3d::Random(); |
Benoit Jacob | 62ec1dd | 2008-07-15 23:56:17 +0000 | [diff] [blame] | 2 | cout << "Here is the matrix m:" << endl << m << endl; |
3 | Matrix3d inv; | ||||
4 | m.computeInverse(&inv); | ||||
5 | cout << "Its inverse is:" << endl << inv << endl; |