How do I develop a matlab program for the conversion of S-parameter to Z-parameter from results of measurements of a saw resonator using a VNA?
10 ビュー (過去 30 日間)
古いコメントを表示
I have taken measurements of the reflection coefficients of a saw resonator using a Vector Network Analyser. Now I want to develop a matlab program to convert the S-parameters to Z-parameter(S11 to Z11).
1 件のコメント
Rica
2012 年 11 月 8 日
hi zeinab.
you should save your data from vna as s2p file(touchstone file). you can use matlab to open this file. just type this in the matlab help:Reading and Analyzing RF Data from a Touchstone Data File
bye
回答 (2 件)
Rica
2012 年 11 月 9 日
hi zeinab.
you should save your data from vna as s2p file(touchstone file). you can use matlab to open this file. just type this in the matlab help:Reading and Analyzing RF Data from a Touchstone Data File
bye
What is saw resonator?
0 件のコメント
Srikanth K
2021 年 2 月 8 日
Convert your S-parm file to Z-parm and plot impedance plots..you can use below fucntion to do that.
Z = zparameters('defaultbandpass.s2p');
z11 = rfparam(Z,1,1);
plot(Z.Frequencies, imag(z11)) ;% this is for imaginary part of Z-, change as per your requrements
look below link for more info..
https://www.mathworks.com/help/rf/ref/zparameters.html
1 件のコメント
jim turner
2021 年 3 月 2 日
does anyone know how to use X-parameters in MATLAB/SIMULINK?
These are power dependant S-parameters that simulators or test equpment produce.
Jim
参考
カテゴリ
Help Center および File Exchange で Data Import and Network Parameters についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!