Skip to content
DirectionWise_replicate.cpp 186 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.colwise().replicate<3>() = ..." << endl;
cout << m.colwise().replicate<3>() << endl;