Mathematica中的复共轭转置

时间:2011-12-01 04:06:12

标签: wolfram-mathematica linear-algebra

Mathematica中是否存在复共轭转置的现有函数? matlab中的等价物是apostrophe operator(')。

1 个答案:

答案 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]即可使用。