mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-27 06:30:28 +08:00
5 lines
186 B
C++
5 lines
186 B
C++
|
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;
|