a command for changing the place of columns in a matrix directly
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi all
I have a matrix m-by-n and I want to change the place of columns with an espiciall command in matlab. How can I do this . for Example:
a=[10 20; 20 40; 10 30] chaanged to b=[20 10; 40 20; 30 10]
Thanks for your guidance cheers
0 Kommentare
Akzeptierte Antwort
Andrew Newell
am 29 Dez. 2011
You can do this with the matrix indices. For the example you give,
b = a(:,[2 1]);
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating 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!