フィルターのクリア

How to get a view of Membership function in Fuzzy logic ??

4 ビュー (過去 30 日間)
nayomi
nayomi 2011 年 11 月 1 日
回答済み: Sam Chak 2023 年 9 月 2 日
Dear all
I'm working with fuzzy logic tool box.I want to get the view of membership function in FIS editor.I can get the membership functions by printing the screen. But I need another way to get it. If there is another way to obtain the view of membership functions???

回答 (1 件)

Sam Chak
Sam Chak 2023 年 9 月 2 日
Instead of printing the screen to create a screenshot of the membership functions (MFs), you can use the function plotmf() to plot the MFs for an input or output variable in the fuzzy system. Then, simply copy the figure to your clipboard by clicking Edit > Copy Figure and paste it into a text document or presentation slide.
fis = readfis('tipper');
subplot(211)
plotmf(fis, 'input', 1)
subplot(212)
plotmf(fis, 'input', 2)

カテゴリ

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