Jitse Niesen | 3d9764e | 2010-07-24 16:43:07 +0100 | [diff] [blame^] | 1 | MatrixXi m = MatrixXi::Random(2,3); |
2 | cout << "Here is the matrix m:" << endl << m << endl; | ||||
3 | cout << "m.colwise().replicate<3>() = ..." << endl; | ||||
4 | cout << m.colwise().replicate<3>() << endl; |