aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_inverse.cpp
blob: b5c645cba71dde416574da60e121801b2cfb3ba2 (plain)
1
2
3
Matrix3d m = Matrix3d::random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Its inverse is:" << endl << m.inverse() << endl;