How we can give input to ANFIS

1 visualizzazione (ultimi 30 giorni)
Gagandeep Kaur
Gagandeep Kaur il 18 Lug 2022
Risposto: Sam Chak il 28 Lug 2022
Suppose if I want to give 10 inputs to ANFIS then how combinations can be created.Please tell me

Risposte (1)

Sam Chak
Sam Chak il 28 Lug 2022
Maybe you can try something like this:
IN = [in01(:) in02(:) in03(:) in04(:) in05(:) in06(:) in07(:) in08(:) in09(:) in10(:)];
data = [IN out(:)]; % create input-output dataset
opt = anfisOptions;
opt.InitialFIS = 2;
opt.EpochNumber = 10;
KaurFIS = anfis(data, opt);
output = evalfis(KaurFIS, IN); % output predicted by KaurFIS

Categorie

Scopri di più su Fuzzy Logic Toolbox in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by