swap matrix positions in 3d matrices
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
How do I swap matrix positions? So if I wanted
a(1,1,:) = [1 2 3 4];
a(1,2,:) = [1 1 1 1];
to become
a(1,1,:) = [1 1 1 1];
a(1,2,:) = [1 2 3 4];
1 Kommentar
Jan
am 17 Jan. 2013
Such questions are discussed exhaustively in the Getting Started chapters of the documentation. It is recommended to read them.
Antworten (2)
Andrei Bobrov
am 17 Jan. 2013
Bearbeitet: Andrei Bobrov
am 17 Jan. 2013
a(1,1:2,:) = a(1,[2,1],:);
Colin
am 17 Jan. 2013
0 Stimmen
a(1,[1 2],:) = a(1,[2 1],:);
Diese Frage ist geschlossen.
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!