0% found this document useful (0 votes)
72 views2 pages

Inverse of T Parameters Derivation

The document summarizes the inverse and relationships between S-parameters and T-parameters for a 2-port network. It shows that the inverse of a transmission matrix T is obtained by switching the signs of the off-diagonal elements and inverting the determinant. It also describes the relationships between S and T parameters for the cases when there is no excitation on one of the ports. Specifically, it shows that S11 is equal to T21/T11 when there is excitation only on port 1, and S22 is equal to -T12/T11 when there is excitation only on port 2. Additionally, it provides the matrix relationship between S and T parameters that combines the individual port relationships.

Uploaded by

Sasa Alasovic
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
72 views2 pages

Inverse of T Parameters Derivation

The document summarizes the inverse and relationships between S-parameters and T-parameters for a 2-port network. It shows that the inverse of a transmission matrix T is obtained by switching the signs of the off-diagonal elements and inverting the determinant. It also describes the relationships between S and T parameters for the cases when there is no excitation on one of the ports. Specifically, it shows that S11 is equal to T21/T11 when there is excitation only on port 1, and S22 is equal to -T12/T11 when there is excitation only on port 2. Additionally, it provides the matrix relationship between S and T parameters that combines the individual port relationships.

Uploaded by

Sasa Alasovic
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

Inverse of T (T^-1) :

 S11 S 22 S 22 
 S 21  S S12 
In matrix form: inv(T )   12

  11 S 1 
 S12 S12 

m - code:
clc, clear all, close all
syms s11 s12 s21 s22;
syms T iT;
T=[1/s21 -s22/s21; s11/s21 (s12*s21-s11*s22)/s21]
iT=inv(T)
det(T)

S of T relationships:

For case a2=0 (No excit. on 2nd port ) <=> 10 cases in S&T param above def (eguations
1 _ S ,  2 _ S , 1 _ T ,  2 _ T  ) → and from:
.....1ST 
1
1TS => S 21 
T11
___________________________________________________________________________________

..... 2ST 
T21
2TS => S11  T21 S 21 and 1ST => S11 
T11

For case a1=0 (No excit. on 1st port ) <=> 20 cases in S&T param above def (eguations
 3 _ S ,  4 _ S ,  3 _ T ,  4 _ T  ) → and from:

 T12
3TS => S 22  T12 S 21 and 1ST => S 22  .....3ST 
T11
___________________________________________________________________________________

.....3ST 
S11 S 22 T12T21
4TS => S12  T22  and from: (1ST) (2ST) (3ST) => S12  T22 
S 21 T11
 T21 T12T21 
T 
 S11 S12   T11 22
T11 
In matrix form: S    ……………………………. (MST)
 21 S 22   1  T12 
 T11 T 11 

% T2S:

clc, clear all, close all


syms a1 b1
syms a2 b2
syms T11 T21 T12 T22
eqns = [a1 == T11*b2+T12*a2, b1 == T21*b2+T22*a2];
vars = [b1 b2];
[b1, b2] = solve(eqns, vars)

You might also like