image_framework_ymj/include/eigen3/doc/snippets/DirectionWise_replicate.cpp

5 lines
186 B
C++
Raw Permalink Normal View History

2024-12-06 16:25:16 +08:00
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;