Converting magnitude (dB) and phase (deg) to complex value

133 visualizzazioni (ultimi 30 giorni)
Let's assume I have magnitude value in dB and phase in degrees. How to change those to a complex number in Matlab?

Risposta accettata

Star Strider
Star Strider il 19 Feb 2021
Modificato: Star Strider il 19 Feb 2021
Try this:
complexVector = [10.^(mag_dB/20) .* exp(1j*deg2rad(phase_degrees))]
or as an anonymous function:
complexVector = @(mag_dB,phase_degrees) [10.^(mag_dB/20) .* exp(1j*deg2rad(phase_degrees))]
Out = complexVector(mag_dB,phase_degrees)
also demonstrating how to call it.
EDIT — (19 Feb 2021 at 23:06)
Corrected typographical error.
  8 Commenti

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Encryption / Cryptography 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