Transpose Matrix Function

Returns the conjugate transpose of matrix.

The connector pane displays the default data types for this polymorphic function.


icon

Inputs/Outputs

  • c2ddbl.png matrix

    matrix must be a 2D array of any numeric type or a real or complex matrix.

  • i2ddbl.png 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.