Transpose an array of rank two. Element (i, j) of the result has the value MATRIX(j, i)
, for all i, j.
Fortran 90 and later
Transformational function
RESULT = TRANSPOSE(MATRIX)
MATRIX | Shall be an array of any type and have a rank of two. |
The result has the same type as MATRIX, and has shape (/ m, n /)
if MATRIX has shape (/ n, m /)
.
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-10.2.0/gfortran/TRANSPOSE.html