TRANSPOSE intrinsic function
Standard: F77 F90 F95 F2003
  Example Program
<Syntax>
TRANSPOSE(MATRIX)

MATRIX : array of any type and rank 2
<Semantics>

Returns the transpose of MATRIX. Element (i,j) of the result will be equal to element (j,i) of MATRIX.

Note that a multi-dimensional transposition can be performed by the RESHAPE intrinsic function.

<Related>
MATMUL intrinsic function, RESHAPE intrinsic function, SHAPE intrinsic function