aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_corner_enum_int_int.cpp
blob: fd6c950ccd4b69f1e7bb30eb8c3434d431cbb1a5 (plain)
1
2
3
4
5
6
Matrix4i m = Matrix4i::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is the bottom-right 2x3 corner in m:" << endl
     << m.corner(Eigen::BottomRight, 2, 3) << endl;
m.corner(Eigen::BottomRight, 2, 3).setZero();
cout << "Now the matrix m is:" << endl << m << endl;