1Matrix3d m = Matrix3d::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Its inverse is:" << endl << m.inverse() << endl;
4