aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_minor.cpp
blob: 2915d7eed58882b867e8971af0603465d53315ce (plain)
1
2
3
Matrix3i m = Matrix3i::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is m.minor(1,1):" << endl << m.minor(1,1) << endl;