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

344 views (last 30 days)
Let's assume I have magnitude value in dB and phase in degrees. How to change those to a complex number in Matlab?

Accepted Answer

Star Strider
Star Strider on 19 Feb 2021
Edited: Star Strider on 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 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!