Sorting the variable by comparing

1 Ansicht (letzte 30 Tage)
kash
kash am 15 Sep. 2012
I have two variables
A=[1000 16000 10000 30000 2000]
B=[150 100 4000 5000 2000]
I want to sort Variable B according to A
The 1st minimum of A is 1000 it is in 1syt position and B is 100 so 100 must be in first position
The 2nd minimum of A is 2000 it is in 5th position and B is 150,so 150 must be placed in 5th position ,and so on pleas help
C=[100 4000 2000 5000 150]

Akzeptierte Antwort

Dishant Arora
Dishant Arora am 15 Sep. 2012
[~ ~ k]=unique(A);
B=unique(B);
C=B(k);
  4 Kommentare
kash
kash am 15 Sep. 2012
Thanks Dishant can you please tell what values are stored in k,i did not understand that
Dishant Arora
Dishant Arora am 15 Sep. 2012
Bearbeitet: Dishant Arora am 15 Sep. 2012
doc unique.
and the reason you got the error lies in the link below:
have a look at the answer by jan there.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

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