blob: 9e897d01c64e03ff187dab9ea83e5760c7cca484 [file] [log] [blame]
Jitse Niesena9fe75e2010-07-31 21:37:29 +01001Matrix3i mat;
2mat << 1, 2, 3, 4, 5, 6, 7, 8, 9;
3cout << "Here is the matrix mat:\n" << mat << endl;
4mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2);
5cout << "After the assignment, mat = \n" << mat << endl;