Returns the transpose of x. This function is only defined for matrices.
For the result z = transpose(x) is z[i,j] = x[j,i].
Syntax
transpose(x)
Types
Variable Name | Value Type | Variable Type | ||
---|---|---|---|---|
Argument: | x | real, complex | matrix | |
Result: | z | real, complex | matrix |
Calculator Input
Use the
button to complete the operation.Example
ID | Description | Type | Value | Expression | |
---|---|---|---|---|---|
x | Argument | REAL MATRIX |
| [[1,2,3],[4,5,6]] | |
z | Result | REAL MATRIX |
| transpose(x) |