Problem 43739. Repeat Vector Values an Arbitrary Number of Times
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 commentsProblem Recent Solvers35
Suggested Problems
-
1570 Solvers
-
Number of 1s in the Binary Representation of a Number
457 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
637 Solvers
-
07 - Common functions and indexing 2
414 Solvers
-
Matlab Basics II - Extract last 3 elements of a vector
249 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!