Files
Polyhedron/external/eigen-3.4.0/doc/snippets/MatrixBase_replicate_int_int.cpp
Efim Beshmenev 7f9dc067a1 Initial commit
2026-07-10 19:16:42 +03:00

5 lines
163 B
C++

Vector3i v = Vector3i::Random();
cout << "Here is the vector v:" << endl << v << endl;
cout << "v.replicate(2,5) = ..." << endl;
cout << v.replicate(2,5) << endl;