Effacer les filtres
Effacer les filtres

How to define Fuzzy Rules?

1 vue (au cours des 30 derniers jours)
Moussa
Moussa le 31 Jan 2024
I have an assignment related to fuzzy logic. In the following part of the assignment, I have come to a halt. There are 4 inputs and 1 output, and each of them has 3 membership functions. I am required to generate 81 rules from these components. However, as you can observe from the attached image, the total number of rules is 3^5=243. I am unsure of how to select the specific 81 rules from this larger set.

Réponses (1)

Sam Chak
Sam Chak le 31 Jan 2024
Hello @Moussa
Here's how we go about estimating the number of rules based on the given number of inputs and the number of membership functions (MFs) for each input. Ideally, you'd also want to generate 81 MFs for the output. Nevertheless, there's flexibility to reuse certain MFs for specific rules, depending on the situation as perceived by the human designer.
nInput = 4; % number of Inputs
nMFcns = 3; % number of MFs
nRules = nMFcns^nInput % number of Rules
nRules = 81

Catégories

En savoir plus sur Fuzzy Inference System Modeling dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by