Skip to content
MatrixBase_replicate.cpp 170 B
Newer Older
Luker's avatar
Luker committed
MatrixXi m = MatrixXi::Random(2,3);
cout << "Here is the matrix m:" << endl << m << endl;
cout << "m.replicate<3,2>() = ..." << endl;
cout << m.replicate<3,2>() << endl;