MatrixBase_replicate_int_int.cpp revision c981c48f5bc9aefeffc0bcb0cc3934c2fae179dd
1Vector3i v = Vector3i::Random();
2cout << "Here is the vector v:" << endl << v << endl;
3cout << "v.replicate(2,5) = ..." << endl;
4cout << v.replicate(2,5) << endl;
5