MatrixBase_template_int_int_bottomRightCorner_int_int.cpp revision 7faaa9f3f0df9d23790277834d426c3d992ac3ba
1Matrix4i m = Matrix4i::Random();
2cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Here is m.bottomRightCorner<2,Dynamic>(2,2):" << endl;
4cout << m.bottomRightCorner<2,Dynamic>(2,2) << endl;
5m.bottomRightCorner<2,Dynamic>(2,2).setZero();
6cout << "Now the matrix m is:" << endl << m << endl;
7