Breaking down arrays into multiple smaller arrays

2 views (last 30 days)
I want to break down an array such as this one:
into three separate arrays, based on the rpm column, so that at the end I will have one grren, one gray and one pink array. How can I do this efficiently?

Answers (1)

Walter Roberson
Walter Roberson on 30 Mar 2018
splitapply(@(M) {M}, YourData, findgroups(YourData(:,3)))

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!