Filter löschen
Filter löschen

How can i flip a (M x N) matrix to (N x M)?

13 Ansichten (letzte 30 Tage)
Alex Brown
Alex Brown am 5 Jul. 2017
Bearbeitet: Astik Sachan am 5 Jul. 2017
i want to reverse the columns and lines in a matrix how can i do it?

Akzeptierte Antwort

Astik Sachan
Astik Sachan am 5 Jul. 2017
Bearbeitet: Astik Sachan am 5 Jul. 2017
There are two ways to do it:-
A = [1 ,2 ; 3, 4] ;
Flipped_A = transpose(A) ;
2. Put a single-quote to the end of variable
A = [1 ,2 ; 3, 4] ;
Flipped_A = A' ;

Weitere Antworten (1)

Torsten
Torsten am 5 Jul. 2017
https://de.mathworks.com/help/matlab/ref/transpose.html
Best wishes
Torsten.

Kategorien

Mehr zu Cell Arrays 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!

Translated by