Transpose Matrix
- Updated2023-02-17
- 1 minute(s) read
Transpose Matrix
Returns the conjugate transpose of matrix.


matrix
2D array of any numeric type.

transposed matrix
Output matrix with transposed elements.
Output Behavior
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.