how to sort cells by date?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i have a column of dates DD\MM\YYYY, i want to sort them by date .
i try:
sort(A);
but it sorts them by days
how i can do this?
2 commentaires
Réponses (1)
Walter Roberson
le 24 Août 2015
[~, order] = datenum(A(:,1));
sortedA = A(order,:);
3 commentaires
Walter Roberson
le 24 Août 2015
Modifié(e) : Walter Roberson
le 24 Août 2015
[~, order] = sort(datenum(A(:,1)));
sortedA = A(order,:);
Voir également
Catégories
En savoir plus sur Dates and Time 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!