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?

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

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
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?
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

does anyone know how to use X-parameters in MATLAB/SIMULINK?
These are power dependant S-parameters that simulators or test equpment produce.
Jim

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Visualization and Data Export에 대해 자세히 알아보기

질문:

2012년 9월 5일

댓글:

2021년 3월 2일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by