android_mt6572_jiabo/external/eigen/doc/snippets/DirectionWise_replicate_int.cpp
2025-09-05 16:56:03 +08:00

4 lines
179 B
C++

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