Transpose Matrix Function
- Updated2025-07-30
- 1 minute(s) read
Returns the conjugate transpose of matrix.
The connector pane displays the default data types for this polymorphic function.

Inputs/Outputs
matrix
—
matrix must be a 2D array of any numeric type or a real or complex matrix.
transposed matrix
—
transposed matrix is the output matrix with transposed elements. |
The conjugate transpose of matrix rearranges the elements so that the element at index (i, j) in matrix becomes the conjugate of the element at (j, i) in transposed matrix. For a real matrix, the transpose and conjugate transpose operations produce the same result.
matrix
—
transposed matrix
—