aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_template_int_int_corner_enum.cpp
blob: 05ed0ad2fadde03d263b5080931249e43d4c396d (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<2,3>(Eigen::BottomRight) << endl;
m.corner<2,3>(Eigen::BottomRight).setZero();
cout << "Now the matrix m is:" << endl << m << endl;