Problem 2953. Split array into pieces according to corresponding array
An array x of length n has values 1...m with each value appearing at least once. The values are sorted (n>=m).
A second array y of the same size should be split into elements of a cell array c such that the first element of c contains all elements of y at the positions where x=1 and so on:
x= [ 1 1 1 2 2 3 3 3 3];
y= [10 52 12 58 21 43 89 27 98];
c{1}=[10 52 12];
c{2}=[ 58 21];
c{3}=[ 43 89 27 98];
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers58
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15764 Solvers
-
2598 Solvers
-
788 Solvers
-
Return a list sorted by number of consecutive occurrences
426 Solvers
-
Generate N equally spaced intervals between -L and L
938 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!