next | previous | forward | backward | up | top | index | toc | Macaulay2 web site
NumericalHilbert :: adjointMatrix

adjointMatrix -- Conjugate transpose of a complex matrix

Synopsis

Description

Returns the conjugate transpose of a matrix with complex entries.

i1 : M = matrix {{1+ii,2*ii},{0,1}}

o1 = | 1+ii 2ii |
     | 0    1   |

                2          2
o1 : Matrix CC    <--- CC
              53         53
i2 : adjointMatrix M

o2 = | 1-ii 0 |
     | -2ii 1 |

                2          2
o2 : Matrix CC    <--- CC
              53         53

Ways to use adjointMatrix :