blob: 3ce52bcd5dba51c843dc4a0fda5f0a955640271e [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.replicate<3,2>() = ..." << endl;
4cout << m.replicate<3,2>() << endl;