Split array in sub arrays according to growing value in first row

조회 수: 5 (최근 30일)
I have an array where the first row has growing intiger numbers. How can I split the array according to those values.
Example: This
[ 1 1 1 2 3 3
x x x x x x
y y y y y y ]
Should become something like this
[ [1 1 1 [2 [3 3
x x x x x x
y y y] y] y y] ]

채택된 답변

Iman Ansari
Iman Ansari 2013년 4월 7일
Hi
m=[1 1 1 2 3 3;randi(10,2,6)];
c={};
for i=min(m(1,:)):max(m(1,:))
c{i}=m(:,m(1,:)==i);
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by