How to make "Singleton output membership function" ?
4 ビュー (過去 30 日間)
古いコメントを表示
I want to design a custom membership function, where three spikes are needed in output MF.

回答 (1 件)
Sam Chak
2022 年 1 月 8 日
You can try something like the following:
t = 0:0.001:1;
iota = [-1 0 1];
plot(iota(1)*ones(size(t)), t, iota(2)*ones(size(t)), t, iota(3)*ones(size(t)), t, 'linewidth', 2)
axis([-1.2, 1.2, 0, 1.2])

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!