1
2
3
4
5
| Matrix4i m = Matrix4i::Random();
| cout << "Here is the matrix m:" << endl << m << endl;
| cout << "Here is the block:" << endl << m.block<2, Dynamic>(1, 1, 2, 3) << endl;
| m.block<2, Dynamic>(1, 1, 2, 3).setZero();
| cout << "Now the matrix m is:" << endl << m << endl;
|
|