fuz_exp.m

来自「FISMAT accommodates different arithmetic」· M 代码 · 共 26 行

M
26
字号
function f = fuz_exp(f1)% f=fuz_exp(f1)%% Exponential function of a (LR-) fuzzy intervalls (number). % (approximation)%% f = f1 = [xmin xmax m n alpha beta] %   = [xmin xmax e^m e^n e^m(1-e^-alpha) e^n(e^beta-1)]%% ymin=0 und ymax=1 %% 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 if fuz_sign(f1)==1; f = fuz_exp1(f1); end;    % f1 ist negativif fuz_sign(f1)==2;   f1 = fuz_sire(f1);  f  = fuz_exp1(f1);  f  = fuz_inv(f);end;

⌨️ 快捷键说明

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