sorting

I have a code
[out ind]=sort(Distance)
in out i get sorted value of distance
what that ind indicates,in that i get values between i to 80 randomly
i have 80 values in Distance please tell

 Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de Feb. de 2012

1 voto

ind is the indices of the unsorted data. For example if out(3) corresponds to the value of the 3rd smallest distance, and ind(3) corresponds to the index in that that value had in the original unsorted data. Distance(ind(3)) -> out(3)
In other words, ind is the order the the data items had to be arranged in to in order to get the sorted values.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 16 de Feb. de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by