Problem 760. Duplicate each element of a vector.
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]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers629
Suggested Problems
-
2247 Solvers
-
680 Solvers
-
451 Solvers
-
268 Solvers
-
Flip the vector from right to left
10398 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!