sorting rows
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a matrix ,i have to sort them by "time" variable plz tell how to proceed
Akzeptierte Antwort
Andrei Bobrov
am 15 Mai 2012
time1 = rand(8,1);
yourmatrix = randi(30,8);
solution:
[id,id] = sort(time1);
out = yourmatrix(id,:)
OR:
out1 = sortrows([time1(:), yourmatrix],1);
out = out1(:,2:end)
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Shifting and Sorting Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!