TRANSPOSE
Returns the transpose of a matrix (rows become columns and columns become rows).
| Category | Matrix |
| Syntax | TRANSPOSE(matrix) |
Parameters
| Parameter | Required | Description |
|---|---|---|
matrix | Required | The matrix to transpose. |
Example
TRANSPOSE([1, 2; 3, 4])
// → [1, 3; 2, 4]
Auto-generated from the EngCanvas function registry.