managing year and months
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Seemab Janjua
le 12 Juin 2015
Commenté : Seemab Janjua
le 22 Juin 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 commentaires
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 12 Juin 2015
Modifié(e) : Azzi Abdelmalek
le 12 Juin 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);
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!