linalg(deprecated)/htranspose - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : linalg(deprecated)/htranspose

linalg(deprecated)

  

htranspose

  

Hermitian transpose of a matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

htranspose(A)

Parameters

A

-

m x n matrix

Description

• 

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.

Examples

Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[HermitianTranspose], instead.

withlinalg:

Aarray1,2,4,I

A124I

(1)

htransposeA

142−I

(2)

Bmatrix3,2,1+I,3,I,2I,4,5

B1+I−3−I2I45

(3)

htransposeB

1II4−32I5

(4)

See Also

linalg(deprecated)[transpose]

LinearAlgebra