Mathematica中是否存在复共轭转置的现有函数? matlab中的等价物是apostrophe operator(')。
答案 0 :(得分:7)
在你的标题中,你要求共轭转置。这只是ConjugateTranspose
。
如果你想要共轭,它只是Conjugate
。
Input:
a = {{3 + 2 I, 1 - I}, {2 - 5 I, 4 + 3 I}}
ConjugateTranspose[a]
Output:
{{3 + 2 I, 1 - I}, {2 - 5 I, 4 + 3 I}}
{{3 - 2 I, 2 + 5 I}, {1 + I, 4 - 3 I}}
您也可以使用Hermitian共轭符号,输入esc hc esc
或\[HermitianConjugate]
即可使用。