Mathematica中的复共轭转置

Blu*_*fee 3 wolfram-mathematica linear-algebra

Mathematica中是否存在复共轭转置的现有函数?matlab中的等价物是撇号算子(').

Mik*_*ley 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}}
Run Code Online (Sandbox Code Playgroud)

您也可以使用Hermitian共轭符号,您可以通过输入esc hc esc或使用它\[HermitianConjugate].