blob: d92d4a3507ac5fce74c5dccfdcf7ba446725f4cd [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001MatrixXi 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;