TRANSPOSE

Returns the transpose of a matrix.

Format

TRANSPOSE (M)

Argument

 
M
A matrix.

Examples

The following examples illustrate the use of the TRANSPOSE function:
 
Function
TRANSPOSE({1,2,3}
Result
{[1,2,3]}
 
Function
TRANSPOSE({[1,2],[3,4]})
Result
{[1,3],[2,4]}