Converting linear scaled magnitude and phase to complex Values
37 views (last 30 days)
Show older comments
Kabit Kishore
on 7 Jun 2022
Commented: Star Strider
on 7 Jun 2022
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
0 Comments
Accepted Answer
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.
.
2 Comments
More Answers (0)
See Also
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!