Converting linear scaled magnitude and phase to complex Values

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

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 MATLAB 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!