How can i flip a (M x N) matrix to (N x M)?
34 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alex Brown
el 5 de Jul. de 2017
Editada: Astik Sachan
el 5 de Jul. de 2017
i want to reverse the columns and lines in a matrix how can i do it?
0 comentarios
Respuesta aceptada
Astik Sachan
el 5 de Jul. de 2017
Editada: Astik Sachan
el 5 de Jul. de 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' ;
0 comentarios
Más respuestas (1)
Torsten
el 5 de Jul. de 2017
https://de.mathworks.com/help/matlab/ref/transpose.html
Best wishes
Torsten.
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!