blob: d92d4a3507ac5fce74c5dccfdcf7ba446725f4cd [file] [log] [blame]
Jitse Niesen3d9764e2010-07-24 16:43:07 +01001MatrixXi m = MatrixXi::Random(2,3);
2cout << "Here is the matrix m:" << endl << m << endl;
3cout << "m.colwise().replicate<3>() = ..." << endl;
4cout << m.colwise().replicate<3>() << endl;