intensif.m

来自「如果你看过神经模糊与软运算这本书,相信你一定想得到它的源代码.」· M 代码 · 共 19 行

M
19
字号
% Illustration of intensifier
% J.-S. Roger Jang

x = (0:0.2:10)';
mf = tri_mf(x, [1, 3, 9]);

mf1 = inc_ctrs(mf);
mf2 = inc_ctrs(mf1);
mf3 = inc_ctrs(mf2);

subplot(211);
plot(x, [mf mf1 mf2 mf3]);
xlabel('X');
ylabel('Membership Grades');
title('Effects of Contrast Intensifier');

cyclesty;
axis([min(x) max(x) 0 1.2]);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?