function

plotsurf - Plot fls output surface

Calling Sequence

plotsurf( fls [, ivar , ovar , vivar [,npart [,mod]]])

Parameters

Description

plotsurf plot the output fls surface. In the x axis was plotted the ivar(1) input variable, in the y axes the ivar(2) input variable and in the z axes the ovar output variable.The rest of input variables take the value defined in vivar , vivar(ivar(1)) and vivar(ivar(2)) are generated internally, so this values don't care.

The user can set the number of partitions for each input variable with npart parameter. The default value for inputs is 21 partitions.

The mod parameter mean: 1 for grayscale, 2 for jetcolormap, 3 for hotcolormap and 4 for internal color map.

If plotsurf is called with only fls parameter, the a GUI to select inputs and outputs are launched.

Examples

// READ A FLS
fls=loadfls(flt_path()+"demos/fan1.fls");
xbasc();
plotsurf(fls,[1 2],1,[0 0]);
halt();
xbasc();
plotsurf(fls,1,1,[0 50]);
halt();
plotsurf(fls)

See Also

plotvar ,   printrule ,   newfls ,   fls_structure ,  

Author

Jaime Urzua Grez