How to sort a two column vector

6 visualizaciones (últimos 30 días)
Jórdan Venâncio Leite
Jórdan Venâncio Leite el 2 de Jun. de 2020
Comentada: Rena Berman el 12 de Oct. de 2020
I need to order this two column vector (attached) in such a way that the first column (x) is ordered ascending and the second column follows this order. In other words, it is very important to me that the values in the second column remain the same for each value of x.
Thanks in advance.
  4 comentarios
Stephen23
Stephen23 el 11 de Jun. de 2020
Original question by Jórdan Venâncio Leite on 2nd June 2020 retrieved from Google Cache (uploaded data could not be retrieved):
"How to sort a two column vector"
I need to order this two column vector (attached) in such a way that the first column (x) is ordered ascending and the second column follows this order. In other words, it is very important to me that the values in the second column remain the same for each value of x.
Thanks in advance.
Rena Berman
Rena Berman el 12 de Oct. de 2020
(Answers Dev) Restored edit

Iniciar sesión para comentar.

Respuestas (2)

dpb
dpb el 2 de Jun. de 2020
s=sortrows(x);

KSSV
KSSV el 2 de Jun. de 2020
Let A be your vector of two columns.
[val,idx] = sort(A(:,1)) ; % sort the first column
iwant = A(idx,:) % arrange A in ascending order of first column

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