ANFISOptions Properties
ANFIS tuning options
Specify ANFIS tuning options using the MethodOptions property
of a tunefisOptions object, which is an ANFISOptions object.
Then, tune your ANFIS system using the tunefis function.
For example, the following commands create an initial FIS structure and tune its membership function parameters using the ANFIS algorithm with 40 training epochs.
inFIS = genfis(inputData,outputData);
opt = tunefisOptions(Method="anfis");
opt.MethodOptions.EpochNumber = 40;
fis = tunefis(inFIS,[],inputData,outputData,opt);tunefis uses the Command Window display options only when the
Display property of a tunefisOptions object is
"tuningonly".
Method and Termination Conditions
Step Size
Validation
Command Window Display
FIS Structure
Version History
Introduced in R2017a