linalg(deprecated)
htranspose
Hermitian transpose of a matrix
Calling Sequence
Parameters
Description
Examples
htranspose(A)
A
-
m x n matrix
Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[HermitianTranspose], instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The Hermitian transpose of A is computed. The result is an n x m matrix.
The [i, j]th element of the result is equal to the conjugate of the [j, i]th element of A.
The result inherits the indexing (for example, diagonal or sparse) function of A, if A has such an indexing.
If A is a vector, then it is treated as if it were a column (n x 1) matrix.
The command with(linalg,htranspose) allows the use of the abbreviated form of this command.
with⁡linalg:
A≔array⁡1,2,4,I
A≔124I
htranspose⁡A
142−I
B≔matrix⁡3,2,1+I,−3,−I,2⁢I,4,5
B≔1+I−3−I2⁢I45
htranspose⁡B
1−II4−3−2⁢I5
See Also
linalg(deprecated)[transpose]
LinearAlgebra
Download Help Document