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