how sort just nonzero values?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how can sort values except zero values i.e i want to sort just non zero values in c. how do that. c=[8 4 5 1 0 0 0 ];
thanks
0 commentaires
Réponse acceptée
Honglei Chen
le 12 Mar 2012
Do you want to keep all zeros at the original location? If so
c = [8 4 5 1 0 0 0];
c(c~=0) = sort(c(c~=0));
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Shifting and Sorting Matrices 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!