⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fuz_exp1.m

📁 FISMAT accommodates different arithmetic operators, fuzzification and defuzzification algorithm, imp
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -