ss928_framework/ss928sdk/include/eigen3/doc/snippets/MatrixBase_replicate.cpp

5 lines
170 B
C++
Raw Normal View History

2024-12-16 13:31:45 +08:00
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;