Which "AND" operator is used for the fuzzy rules created by ANFIS?
3 ビュー (過去 30 日間)
古いコメントを表示
Is it the product, boolean, or Zadeh? Does anyone know? Thanks in advance.
0 件のコメント
回答 (1 件)
Sam Chak
2024 年 9 月 21 日
Hi @Gary
By default, ANFIS generates a single-output Sugeno fuzzy inference system. The 'AND' operator is specified in one of the FIS properties. Look out for "AndMethod". By default, the product of the fuzzified input values is used.
x1 = (-1:0.01:1)';
x2 = x1;
y = x1 + x2;
data= [x1, x2, y];
fis = anfis(data);
%% View the properties of Sugeno FIS trained by ANFIS
fis
showrule(fis)
plotfis(fis)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Fuzzy Logic Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!