Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The complex conjugate transpose in Mathematica

Is there an existing function for the complex conjugate transpose in Mathematica? The equivalent in matlab is the to the apostrophe operator (').

like image 636
BlueCoffee Avatar asked Mar 02 '26 18:03

BlueCoffee


1 Answers

In your title you ask for conjugate transpose. That's just ConjugateTranspose.

If you want the conjugate, it's just 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}}

You can also use the Hermitian conjugate symbol, which you use by entering esc hc esc or \[HermitianConjugate].

like image 122
Mike Bailey Avatar answered Mar 05 '26 10:03

Mike Bailey



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!