how sort just nonzero values?

8 Ansichten (letzte 30 Tage)
huda nawaf
huda nawaf am 12 Mär. 2012
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

Akzeptierte Antwort

Honglei Chen
Honglei Chen am 12 Mär. 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));

Weitere Antworten (1)

Jonathan Sullivan
Jonathan Sullivan am 12 Mär. 2012
c=[8 0 5 0 1 0 4];
c_new = sort(c,'descend')
  1 Kommentar
huda nawaf
huda nawaf am 12 Mär. 2012
thanks,
now if have matrix
c=[3 4 1 0; 2 1 0 0];
how sort nonzero values?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by