필터 지우기
필터 지우기

How to design the membership function in matlab?

조회 수: 2 (최근 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 CenterFile Exchange에서 Fuzzy Logic Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by