Member of the linalgebra class.
c = transpose(a)
Computes the non-conjugate transpose of a matrix.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns the non-conjugate transpose of a. c is a matrix of the same size as a. |
A = [1-i, 3+4i; 5-7i, -i]
C = transpose(A)