Given two vectors of the same size, repeat the values of the first vector the number of times given in a second vector. For example:
x1=[1 2 3 4 5 6]; x2=[2 2 1 1 2 2];
then
out=[1 1 2 2 3 4 5 5 6 6];
Solution Stats
Solution Comments
Show comments
Loading...
Problem Recent Solvers39
Suggested Problems
-
Omit columns averages from a matrix
620 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
560 Solvers
-
Celsius to Fahrenheit converter
671 Solvers
-
Find the dimensions of a matrix
564 Solvers
-
Calculate the number of elements in a matrix.
126 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!