sorting

1 visualización (últimos 30 días)
kash
kash el 16 de Feb. de 2012
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
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.
  1 comentario
kash
kash el 16 de Feb. de 2012
THANKS WALTER

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by