<< pimf sciFLT plotvar >>

sciFLT >> sciFLT > plotsurf

plotsurf

Plot fls output surface

Calling Sequence

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

Parameters

fls:

fls structure.

ivar:

vector, input variables.

ovar:

scalar, output variable.

vivar:

vector, value if input variable

npart:

vector, number of partitions domain for each input variable.

mod:

scalar, display mode.

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");
scf();clf();
plotsurf(fls,[1 2],1);

scf();clf();
plotsurf(fls,1,1,[0 50]);

scf();clf();
plotsurf(fls)

See also

Authors


Report an issue
<< pimf sciFLT plotvar >>