How to import 256*3 size input table into fuzzy?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aberna P
el 22 de Jul. de 2023
Comentada: Aberna P
el 24 de Jul. de 2023
Error using evalfis:
Specify a valid type-1 FIS structure.
4 comentarios
Aberna P
el 23 de Jul. de 2023
Editada: Walter Roberson
el 23 de Jul. de 2023
Respuesta aceptada
Sam Chak
el 23 de Jul. de 2023
Hi @Aberna P
From your code, we can analyze something.
fismat = readfis('Fuzzy2'); % fuzzy get loaded
output = evalfis(S1, fismat); % facing error
Before R2018b, to evaluate a fuzzy inference system, fismat, using evalfis(), the first input argument is the input variable values.
Since R2018b, the input argument order has changed to
output = evalfis(fismat, S1);
Since you used the former syntax, you must be using R2018a or earlier version.
Is Fuzzy2.fis a Type-2 fuzzy system? If it is a Type-2 fuzzy system, and the Interval Type-2 FIS structure was introduced in R2019b, naturally the error message will tell you to specify a valid Type-1 FIS structure.
Can you check?
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Fuzzy Inference System Modeling en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!