How we can give input to ANFIS

2 visualizaciones (últimos 30 días)
Gagandeep Kaur
Gagandeep Kaur el 18 de Jul. de 2022
Respondida: Sam Chak el 28 de Jul. de 2022
Suppose if I want to give 10 inputs to ANFIS then how combinations can be created.Please tell me

Respuestas (1)

Sam Chak
Sam Chak el 28 de Jul. de 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

Categorías

Más información sobre Fuzzy Logic Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by