2008-09-15 23:45:41 +08:00
|
|
|
Matrix4i m = Matrix4i::Random();
|
|
|
|
|
cout << "Here is the matrix m:" << endl << m << endl;
|
2023-12-06 05:22:55 +08:00
|
|
|
cout << "Here is m.block<2,2>(1,1):" << endl << m.block<2, 2>(1, 1) << endl;
|
|
|
|
|
m.block<2, 2>(1, 1).setZero();
|
2008-09-15 23:45:41 +08:00
|
|
|
cout << "Now the matrix m is:" << endl << m << endl;
|