필터 지우기
필터 지우기

Matlabcommand_s parameter to transmission line parameters conversion

조회 수: 1 (최근 30일)
padoh
padoh 2013년 12월 5일
I have used the matlab command
's2t'
However when i computed these parameters on my own using the following formulas as available in various books i found a discrepancy. The resultant t-params are in the wrong order. Can someone plz help?
I am expalining the matter with the following examples:
the s-matrix is given below:
S= -0.5160 + 0.1537i 0.0859 + 0.2458i 0.0803 + 0.2368i 0.2874 + 0.6638i
using the s2t command i got the following t-params:
T= 1.2843 - 3.7874i -2.8832 + 0.2360i -0.0806 + 2.1517i 1.5374 - 0.3191i
however when i computed it using the formulas given in books the s-parameters computed are:
T1= 1.5374 - 0.3191i -0.0806 + 2.1517i -2.8832 + 0.2360i 1.2843 - 3.7874i
Formulas used are:
T11=-(det(s_params))/s_21 T12=s_11/s_21 T21=-s_22/s_21 T22=1/s_21
plz note tht the orders are reversed(e.g S11 becomes S22 etc). Has anyone encountered this problem before?

답변 (1개)

Ge Davidson
Ge Davidson 2020년 6월 8일
Formulas
t11 = 1/s21;
t12 = -(1/s21)*s22;
t21 = s11*(1/s21);
t22 = s12-s11*(1/s21)*s22;

카테고리

Help CenterFile Exchange에서 Denoising and Compression에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by