Converting linear scaled magnitude and phase to complex Values

37 views (last 30 days)
Hi, I have linear scaled S-parameter data from the vector network analyser. The magnitude is not in dB rather it has for example S11MAG and phase (Degrees). I want to convert this to complex values for further analysis. Any help is appreicated. Thank you

Accepted Answer

Star Strider
Star Strider on 7 Jun 2022
If it is not in dB, then the conversion is straightforward —
cplxv = S11MAG .* exp(1i*deg2rad(phase));
That should produce the complex vector.
.

More Answers (0)

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!