Files
smart_wasm/Eigen3/doc/snippets/DirectionWise_replicate_int.cpp
2026-06-01 15:55:59 +08:00

5 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;