mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-06 14:14:46 +08:00
5 lines
170 B
C++
5 lines
170 B
C++
|
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;
|