uW_CSV_read — Read Sij data from a CSV file.
S=uW_CSV_read(filename)
String parameter : filename of the CSV file including the path.
tlist containing the S parameters.
// Get the Sij parameter of a measured device // filename=uigetfile("*.CSV"); S11=uW_CSV_read(filename); filename=uigetfile("*.CSV"); S21=uW_CSV_read(filename); filename=uigetfile("*.CSV"); S12=uW_CSV_read(filename); filename=uigetfile("*.CSV"); S22=uW_CSV_read(filename); S=S11; S.S21=S21.S21; S.S12=S12.S12; S.S22=S22.S22; uW_S2P_display(S); uW_S2P_write(S,"c:\50V.s2p","Generated with Scilab Microwave Toolbox - www.microwave.fr")