blob: d8a5ecc715802dd875af901a1cee65293c6b4215 [file] [log] [blame]
Benoit Jacob3cd2a122007-12-24 11:14:25 +00001Matrix4d m = Matrix4d::diagonal(Vector4d(1,2,3,4));
Benoit Jacobe7bdbe2e2007-12-27 21:43:10 +00002cout << "Here is the matrix m:" << endl << m << endl;
3cout << "Here is m.block<2, 2>(2, 2):" << endl << m.block<2, 2>(2, 2) << endl;
Benoit Jacob3cd2a122007-12-24 11:14:25 +00004m.block<2, 2>(2, 0) = m.block<2, 2>(2, 2);
Benoit Jacobe7bdbe2e2007-12-27 21:43:10 +00005cout << "Now the matrix m is:" << endl << m << endl;