Platform | x64, Win32, .NET |
Purpose |
To transpose an array of rank two. |
Class |
Transformational function. |
Syntax |
FUNCTION TRANSPOSE(MATRIX) |
Description |
MATRIX is an array of any type and has rank two. |
Return value |
The result is an array of the same type and type parameters as MATRIX and with rank two and shape (n, m) where (m, n) is the shape of MATRIX. Element (i, j) of the result has the value MATRIX(j, i ). |