Multiplication of complex matrices

106 visualizzazioni (ultimi 30 giorni)
I have noticed that when I multiply 2 matrices with complex elements A*B, Matlab takes the complex conjugate of matrix B and multiplies A to conj(B).
For example I have a complex vector a = [2+0.3i, 6+0.2i], so the multiplication a*(a') gives 40.13 which is not correct. However, when I want to calculate square of the norm of vector 'a' norm_square = a*conj(a)' I get complex number which is a sum of squares of the vector components.
My question is: is it a bug or I just dont get the way matlab works with complex numbers?
  1 Commento
James Tursa
James Tursa il 24 Ott 2019
"when I multiply 2 matrices with complex elements A*B, Matlab takes the complex conjugate of matrix B and multiplies A to conj(B)"
No, it doesn't.

Accedi per commentare.

Risposta accettata

James Tursa
James Tursa il 24 Ott 2019
Modificato: James Tursa il 24 Ott 2019
There are two different operators:
' is the complex conjugate transpose
.' is the straight transpose (no complex conjugate), notice the dot
Use the operator that is appropriate for your application. If you only want the transpose with no conjugation, then use the dot version .'
Side Note: Related to this, the dot( ) function effectively uses the ' operation internally ... i.e., it does a complex conjugate of the first argument.

Più risposte (0)

Categorie

Scopri di più su Operators and Elementary Operations in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by