Swapping Blocks in a Matrix
Ältere Kommentare anzeigen
Hello. I'm trying to swap the first two numbers of the first and second rows of this test matrix with the last two numbers of the second and third rows. Is there any way to swap these numbers in a matrix that's not one row and/or not on the same row?
x = [1 2 3 4 5;
6 7 8 9 10;
11 12 13 14 15]
The result should be:
x = [9 10 3 4 5;
14 15 8 1 2;
11 12 13 6 7]
Akzeptierte Antwort
Weitere Antworten (1)
Bruno Luong
am 12 Sep. 2018
Bearbeitet: Bruno Luong
am 12 Sep. 2018
[x(1:2,1:2) x(2:3,4:5)] = deal(x(2:3,4:5),x(1:2,1:2))
1 Kommentar
Stephen23
am 12 Sep. 2018
+1 neat use of deal.
Kategorien
Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!