<< uW_MES_plot MES files uW_MES_select_network >>

Microwave Toolbox >> MES files > uW_MES_read

uW_MES_read

read IV measurement file (*.mes) from XLIM measurements

Calling Sequence

dataset = uW_MES_read(filename)

Parameters

filename

the filename of the MES file (XLIM IV curves file format).

dataset

dataset containing the IV curves informations for Scilab.

Description

Examples

filename=tk_getfile("*.mes");
MES=uW_MES_read(filename);

// Get the number of network
size(MES.network)

// Get the number of curves in the first network
size(MES.network(1).curve)

// Get the number of point in the first network and the first curve
size(MES.network(1).curve(1).plot)

// Plot the network by yourself : Id=f(Vds)
for c=1:size(MES.network(1).curve),
   X=[];
Y=[];
   for p=1:size(MES.network(1).curve(c).plot),
    X=[X;MES.network(1).curve(c).plot(p).v2];
 Y=[Y;MES.network(1).curve(c).plot(p).i2];
   end;
plot2d(X,Y);
end;

// Plot the network with the buid-in function
uW_MES_display(MES);

See Also

Authors

Tibault Reveyrand

www.reveyrand.fr


Report an issue
<< uW_MES_plot MES files uW_MES_select_network >>