Convert T-parameters to S-parameters
s_params = t2s(t_params)
example
s_params = t2s(t_params) converts the chain scattering parameters to the scattering parameters.
s_params
t_params
collapse all
Define a matrix of T-parameters.
t11 = 0.138451095405929 - 0.230421317393041i; t21 = -0.0451985986689165 + 0.157626245839348i; t12 = 0.0353675449261375 + 0.115682026931012i; t22 = -0.00194567217559662 - 0.0291212122613417i; t_params = [t11 t12; t21 t22];
Convert T-parameters to S-parameters.
s_params = 2×2 complex -0.5892 + 0.1579i 0.0372 + 0.0335i 1.9159 + 3.1887i 0.3011 - 0.3344i
2-port T-Parameters, specified as a complex 2-by-2-by-M array, where M represents the number of frequency points of 2-port T-parameters.
This function defines the T-parameters as
[a1b1]=[T11T12T21T22][b2a2],
where:
a1 is the incident wave at the first port.
b1 is the reflected wave at the first port.
a2 is the incident wave at the second port.
b2 is the reflected wave at the second port.
2-port S-parameters, returned as a 2-by-2-by-M array of complex numbers, where M represents the number of frequency points of 2-port S-Parameters.
[1] Gonzalez, Guillermo, Microwave Transistor Amplifiers: Analysis and Design, 2nd edition. Prentice-Hall, 1997, p. 25.
s2t
You have a modified version of this example. Do you want to open this example with your edits?