mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-27 06:30:28 +08:00
3d9764ee24
The only missing examples now are for homogeneous() and hnormalized(); I don't know what they're used for ...
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;
|