Brian Silverman | 72890c2 | 2015-09-19 14:37:37 -0400 | [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; |