{{indexmenu_n>999}} ====== ConjugateTranspose ====== ### Matrix.ConjugateTranspose($M$) takes a matrix $M$ and returns its conjugate transpose. ### ===== Example ===== ==== Input ==== A = Matrix.New({{1,1+2*I},{3,4+I}}) B = Matrix.ConjugateTranspose(A) print(B) ==== Result ==== { { 1 , 3 } , { 1 - 2 I , 4 - 1 I } } ===== Table of contents ===== {{indexmenu>..:#2|tsort}}