uW_S2T - Scattering parameter matrix to Cascade matrix convertion for 2 ports matrix.
This function convert a S parameter object into a T parameter one. It works only for 2 ports devices (S2P).
// Get the T11 parameter of a measured device
//
filename=tk_getfile("*.s2p");
S_measure=uW_S2P_read(filename);
T=uW_S2T(S_measure);
plot2d(T.frequency,abs(T.T11));
uW_T2S ,