cyl_ext.m

来自「.m source file about soft compute.」· M 代码 · 共 21 行

M
21
字号
% Illustration of cylindrical extension of fuzzy sets% J.-S. Roger Jang, 1993xx = (0:1:20)';yy = (0:1:20)';bell_x = gbell_mf(xx, [4, 2, 10]);[x,y] = meshgrid(bell_x, yy);subplot(221); plot(xx, bell_x);xlabel('X'); ylabel('Membership Grades');title('(a) Base Fuzzy Set A');set(gca, 'xticklabels', []);subplot(222); mesh(xx, yy, x);view(-20, 30);xlabel('X'); ylabel('y'); zlabel('Membership Grades');set(gca, 'box', 'on');set(gca, 'xticklabels', []); set(gca, 'yticklabels', []);title('(b) Cylindrical Extension of A');

⌨️ 快捷键说明

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