How can I sort vector according to its index?

4 visualizaciones (últimos 30 días)
Mira le
Mira le el 13 de Sept. de 2021
Respondida: Matt J el 13 de Sept. de 2021
Hello every body
I have a problem,
I would like to sort vector
vect that contain
vect = [3 1 3 4]
each value in the vector vect has its index like
ind =[ 1 2 3 4]
so, I want sort the vector vect in descending order with keeping its index correctely
like that
vect =[ 4 3 3 1]
ind = [ 4 1 3 2]
How Can I do that, please help me!
Thank you.

Respuestas (1)

Matt J
Matt J el 13 de Sept. de 2021
[vect,ind]=sort(vect,'descend')

Categorías

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

Etiquetas

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by