<< S2P files S2P files uW_S1P_read >>

Microwave Toolbox >> S2P files > uW_CSV_read

uW_CSV_read

Read Sij data from a CSV file.

Calling Sequence

S=uW_CSV_read(filename)

Parameters

filename

String parameter : filename of the CSV file including the path.

S

tlist containing the S parameters.

Description

This function read S parameters from a CSV file.

Examples

// 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")

See Also

Authors

Tibault Reveyrand

www.reveyrand.fr


Report an issue
<< S2P files S2P files uW_S1P_read >>