aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_template_int_int_corner_enum.cpp
blob: fb64406e444226f69e99a7f4feb44c5ee9a1e2bd (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;