<< linear sciFLT m2ts >>

sciFLT >> sciFLT > loadfls

loadfls

Load fls structure from a file

Calling Sequence

fls=loadfls(fls_filename)

Parameters

fls:

fls structure.

fls_filename:

string, the file name where to save.

Description

loadfls get the fuzzy logic system from fls_filename.The extension '.fls' is assumed for fls_filename if it is not already present.

Examples

// Create a new structure
fls1=newfls('ts');
fls1.comment="This is an example"

// Save the structure in TMPDIR/example1.fls
savefls(fls1,TMPDIR+"/example1");

// Restore the value
fls2=loadfls(TMPDIR+"/example1")

See also

Authors


Report an issue
<< linear sciFLT m2ts >>