Matlab sorting matrix with index (smallest to biggest)

조회 수: 7 (최근 30일)
Erel Kasirga
Erel Kasirga 2019년 6월 1일
댓글: KALYAN ACHARJYA 2019년 6월 1일
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 ?

채택된 답변

Stephen23
Stephen23 2019년 6월 1일
Get rid of the loop:
[sortedDist,idx] = sort(Location,'ascend')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by