How to design the membership function in matlab?

1 回表示 (過去 30 日間)
mindo akami
mindo akami 2021 年 6 月 11 日
編集済み: Alan Stevens 2021 年 6 月 11 日
Hi,
i did the rule 1 and 2 in matlab with trimf function as you can see (see the attached image)
but for the rule 3 and 4 i don't get any idea how to design them
hope someon can help me with that thanks

採用された回答

Alan Stevens
Alan Stevens 2021 年 6 月 11 日
編集済み: Alan Stevens 2021 年 6 月 11 日
How about the following for rule 3 (I'll leave you to invert for rule 4).
x = [-180 -90 -89.001 89.001 90 180];
y = (x+180)/90.*(x<=-90)+(180-x)/90.*(x>=90);
plot(x,y)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFuzzy Logic Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by