Borrar filtros
Borrar filtros

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

4 visualizaciones (últimos 30 días)
nayomi
nayomi el 1 de Nov. de 2011
Respondida: Sam Chak el 2 de Sept. de 2023
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???

Respuestas (1)

Sam Chak
Sam Chak el 2 de Sept. de 2023
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)

Categorías

Más información sobre Fuzzy Logic Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by