Sort first column of a 5x2 matrix but keep the rows intact after sorting

38 Ansichten (letzte 30 Tage)
Hi, I have a 5x2 matrix and I would like to sort the first column and keep the rows together after the sorting is done. For example, I have an array given by
UP = zeros(5,2)
ai = [13,11,15,26,20]
for i = 1:5
UP(i,1) = ai;
UP(i,2) = i;
end
After I sort the first column of the array, I would like to keep the second column assigned with the value of the first column. I would like an output that looks like the following
11,2
13,1
15,3
20,5
26,4

Akzeptierte Antwort

Stephen23
Stephen23 am 15 Mär. 2019
Bearbeitet: Stephen23 am 15 Mär. 2019
>> V = [13,11,15,26,20];
>> M = [V;1:numel(V)].'
M =
13 1
11 2
15 3
26 4
20 5
>> Z = sortrows(M,1)
Z =
11 2
13 1
15 3
20 5
26 4

Weitere Antworten (0)

Kategorien

Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by