mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
5 lines
163 B
C++
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;
|