How to define Fuzzy Rules?

조회 수: 4 (최근 30일)
Moussa
Moussa 2024년 1월 31일
답변: Sam Chak 2024년 1월 31일
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.

답변 (1개)

Sam Chak
Sam Chak 2024년 1월 31일
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

카테고리

Help CenterFile Exchange에서 Fuzzy Inference System Modeling에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by