mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 18:19:34 +08:00
5 lines
164 B
C++
5 lines
164 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;
|