MATLAB: Sorting the variable by comparing

sort

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]

Best Answer

[~ ~ k]=unique(A);
B=unique(B);
C=B(k);