Converting linear scaled magnitude and phase to complex Values
36 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Star Strider
2022 年 6 月 7 日
If it is not in dB, then the conversion is straightforward —
cplxv = S11MAG .* exp(1i*deg2rad(phase));
That should produce the complex vector.
.
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Operating on Diagonal Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!