TopicAliasing_block.cpp
Go to the documentation of this file.
00001 MatrixXi mat(3,3); 
00002 mat << 1, 2, 3,   4, 5, 6,   7, 8, 9;
00003 cout << "Here is the matrix mat:\n" << mat << endl;
00004 
00005 // This assignment shows the aliasing problem
00006 mat.bottomRightCorner(2,2) = mat.topLeftCorner(2,2);
00007 cout << "After the assignment, mat = \n" << mat << endl;


libicr
Author(s): Robert Krug
autogenerated on Mon Jan 6 2014 11:33:44