mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 10:09:36 +08:00
5 lines
187 B
C++
5 lines
187 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;
|