fuz_exp1.m
来自「FISMAT accommodates different arithmetic」· M 代码 · 共 32 行
M
32 行
function f = fuz_exp1(f1)% f=fuz_exp1(f1)%% Exponential function of a (LR-) fuzzy intervall (number).% see fuz_exp() !%% f1 = [xmin xmax m n alpha beta] %% ymin=0 und ymax=1 %% fuz_exp1 is called from fuz_exp .%% FSTB - Fuzzy Systems Toolbox for MATLAB% Copyright (c) 1993-1996 by Olaf Wolkenhauer% Control Systems Centre at UMIST% Manchester M60 1QD, UK%% 8-Feb-1994 m = f1(3); alpha = f1(5);n = f1(4); beta = f1(6);if fuz_sign(f1)==3; % f1 not positive and not negative error('Error: (LR-) fuzzy-intervall (number) zero.fuz_inv impossible !');end;f(1) = f1(1); f(2) = f1(2); % xmin, xmaxf(3) = exp(m); f(4) = exp(n); % m, nf(5) = exp(m)*(1-exp(-alpha)); % alphaf(6) = exp(n)*(exp(beta)-1); % beta
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?