neg.m
来自「为了下载东西」· M 代码 · 共 22 行
M
22 行
function z = neg(x)
% Fuzzy set NEGATIVE
%
% function z = neg(x)
%
% x value from universe
% z corresponding membership value
%
% The definition is functional (continuous).
% Vector input results in vector output.
%
% See also picurve, scurve, zcurve
% Jantzen 940330
Leftx = -80 ;
Rightx = -20;
Typ = 0 ; % 0=non-linear, 1=linear ;
z = zcurve(Leftx,Rightx,x,Typ) ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?