managing year and months
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Seemab Janjua
el 12 de Jun. de 2015
Comentada: Seemab Janjua
el 22 de Jun. de 2015
i have dataset in following formay M = [2015 1 5 ; 2015 1 6 ; 2015 2 6 ; 2014 3 6 ; ]
split like this A = [2015 1 5 ; 2015 1 6 ; ]
B = [2015 2 6 ;]
C = [2014 3 6 ]
0 comentarios
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 12 de Jun. de 2015
Editada: Azzi Abdelmalek
el 12 de Jun. de 2015
Use cell arrays instead of creating several variables.
M = [2015 1 5 ; 2015 1 6 ; 2015 2 6 ; 2014 3 6 ];
v=M(:,1:2);
[ii,jj,kk]=unique(v,'rows','stable');
out=accumarray(kk,1:numel(kk),[],@(x) {M(x,:)});
celldisp(out);
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!