Split array in sub arrays according to growing value in first row
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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] ]
1 comentario
Respuesta aceptada
Iman Ansari
el 7 de Abr. de 2013
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
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!