difflr.m
来自「如果你看过神经模糊与软运算这本书,相信你一定想得到它的源代码.」· M 代码 · 共 17 行
M
17 行
% Illustration of varior L-R MFs% J.-S. Roger Jang, 1993x = 0:100;mf = lr_mf(x, [65, 60, 10]);subplot(221); plot(x, mf);axis([-inf inf 0 1.2]);ylabel('Membership Grades'); title('(a)');xlabel('X');mf = lr_mf(x, [25, 10, 40]);subplot(222); plot(x, mf);axis([-inf inf 0 1.2]);ylabel('Membership Grades'); title('(b)');xlabel('X');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?