Matlab sorting matrix with index (smallest to biggest)

5 views (last 30 days)
Lets say that i got a Location matrix like
Location=[673.725,10355.05,7650.4,5219.5,5776.125,6641.175,4374.525,3847.1,6429.475,5396.525,5219.5,4182.9,7391.25,5038.825,10349.575,6051.7]
and i want to sort this matrix with index. I search the internet and i wrote this code ;
m=16;n=1;
custom=zeros(n,m);
sortedDist=zeros(n,m);
for i=1:n
[sortedDist(i,:),index]=sort(Location(i,:),'ascend');
custom(i,:)=index;
end
But in the end it doesnt sorted indexs the way i need. I want the indexs of the matrix which is sorted smallest to biggest. How can i do that ?

Accepted Answer

Stephen23
Stephen23 on 1 Jun 2019
Get rid of the loop:
[sortedDist,idx] = sort(Location,'ascend')

More Answers (0)

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!