hermitian_tp INDEX

HERMITIAN_TP _ _ _ _ _ _ _ _ _ _ _ _ operator

syntax:

hermitian_tp(<matrix>)

<matrix> :- a matrix.

hermitian_tpcomputes the hermitian transpose of <matrix>.

This is a matrix in which the (i,j)'th entry is the conjugate of the (j,i)'th entry of <matrix>.

examples:



J := mat((i+1,i+2,i+3),(4,5,2),(1,i,0)); 


       [i + 1  i + 2  i + 3]
       [                   ]
  j := [  4      5      2  ]
       [                   ]
       [  1      i      0  ]



hermitian_tp(j); 

  [ - i + 1  4   1  ]
  [                 ]
  [ - i + 2  5   - i]
  [                 ]
  [ - i + 3  2   0  ]

Related functions: tp.