Borrar filtros
Borrar filtros

Error message when trying to run System Validation in Fuzzy Logic Designer app

23 visualizaciones (últimos 30 días)
When I run the System Validation function I get the following error message in Workspace.
'Tri 3x3' is the name of the FIS I've designed.
All other simulation functions work fine.

Respuesta aceptada

Sam Chak
Sam Chak hace alrededor de 21 horas
The reason for the error message that is triggered when the System Validation button is clicked is due to the presence of a space in your FIS filename "Tri 3x3". See 1st image.
In the second image, th same FIS was saved as "SugenoType1.fis" without any spaces in the characters. When the System Validation button is clicked, the system was able to successfully compare the FIS output values to the corresponding reference validation data. You can see that the magnitude of the prediction error is at the order of .
  2 comentarios
Sam Chak
Sam Chak hace alrededor de 20 horas
By the way, it is a "Bug" because the error message did not you anything about the rules of naming a FIS file.
In fact, the presence of an empty space in the name of a Membership Function will also trigger an error message when the 'addRule()' command is used.
You can use the underscore "_" character to signify the a 'space' between two words for compound phrases.
For more info, refer to this question:
Example:
fis_size = mamfis;
fis_size = addInput(fis_size, [1000 2000], 'Name','flow rate');
fis_size = addMF(fis_size, "flow rate", 'trimf', [1000 1500 2000], 'Name', 'high');
fis_size = addMF(fis_size, "flow rate", 'trimf', [1000 1250 1500], 'Name', 'low');
...
rule1 = "If flow rate is high and T_approach is small then size is huge";
rule2 = "If flow rate is low or T_approach is large then size is tiny";
rule3 = "If flow rate is low and T_approach is small then size is huge";
fis_size = addRule(fis_size, [rule1 rule2 rule3]);
Error using FuzzyInferenceSystem/addRule (line 1153)
Do not use a rule keyword as a membership function name.
Steve
Steve hace alrededor de 20 horas
Thanks Sam, I removed the space from the file name and it ran fine.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Fuzzy Inference System Modeling en Help Center y File Exchange.

Productos


Versión

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by