Problem 760. Duplicate each element of a vector.

Created by Julio

for an n-dimensional vector x, the function should return another vector 2n-dimension which each element is repeated twice. Example : in->[2 3 NaN 5] and out->[2 2 3 3 NaN NaN 5 5]

Tags

Problem Group

58 solvers submitted 122 solutions (2.1 solutions/solver).

Solution Comments