Description:
Transpose a matrix.
Syntax:
transpose(A)
Note:
The function transposes matrix A.
Parameter:
A |
A matrix |
Return value:
Sequence
Example:
|
A |
|
1 |
[[1,2,3,4],[3,4,1,2],[2,3,1,4]] |
|
2 |
=transpose(A1) |
|