how can i sort columns of a matrix in ascending order using loops without using the functions max,min,sort?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ciro saravia
am 1 Jul. 2018
Beantwortet: Jonathon Gibson
am 1 Jul. 2018
I have a 15x10 matrix with numbers and i need to sort each column in ascending order
0 Kommentare
Akzeptierte Antwort
Jonathon Gibson
am 1 Jul. 2018
Here's a really simple, inefficient way:
M = rand(15,10)
for col = 1:size(M,2)
for iters = 1:size(M,1)
for row = 1:(size(M,1)-1)
if (M(row,col) > M(row+1,col))
temp = M(row,col);
M(row,col) = M(row+1,col);
M(row+1,col) = temp;
end
end
end
end
M
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Audio and Video Data 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!