pos.m
来自「为了下载东西」· M 代码 · 共 22 行
M
22 行
function z = pos(x)
% Fuzzy set POSITIVE
%
% function z = pos(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 = 20;
Rightx = 80;
Typ = 0 ; % 0=nonlinear, 1=linear ;
z = scurve(Leftx, Rightx, x, Typ) ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?