tri2mf.m
来自「交流 模糊控制 交流 模糊控制」· M 代码 · 共 9 行
M
9 行
function y = tri2mf(x,params)
%TRI2MF Triangular membership function with two parameters
% The parameters are [center delta] where delta is the
% distance from the center to either foot.
% Copyright 1994-2002 The MathWorks, Inc.
% $Revision: 1.7 $
y=trimf(x,[params(1)-params(2) params(1) params(1)+params(2)]);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?