Go to the documentation of this file.00001 Array44i a = Array44i::Random();
00002 cout << "Here is the array a:" << endl << a << endl;
00003 cout << "Here is a.rightCols(2):" << endl;
00004 cout << a.rightCols(2) << endl;
00005 a.rightCols(2).setZero();
00006 cout << "Now the array a is:" << endl << a << endl;