Converting linear scaled magnitude and phase to complex Values
36 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kabit Kishore
am 7 Jun. 2022
Kommentiert: Star Strider
am 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 Kommentare
Akzeptierte Antwort
Star Strider
am 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!