formula for exponential membership function

what is the formula of exponential membership function . How it differs from Gaussian membership function

回答 (1 件)

Sam Chak
Sam Chak 約11時間 前

0 投票

Technically, it is called the Laplace distribution, or the double exponential distribution. The Gaussian MF has a rounded peak, whereas the Laplacian MF has a pointy peak.
x = linspace(-1, 1, 2001);
% Gaussian distribution
b1 = 1/4;
c1 = 0;
mu1 = gaussmf(x, [b1, c1]);
% Laplacian distribution
b2 = 1/8;
c2 = c1;
mu2 = exp(- 1/2*abs((x - c2)/b2));
plot(x, [mu1; mu2]), grid on
xlabel('x');
ylabel('Degree of membership');
legend('gaussMF', 'laplaceMF')

カテゴリ

ヘルプ センター および File ExchangeFuzzy Inference System Modeling についてさらに検索

質問済み:

2014 年 3 月 20 日

回答済み:

2026 年 7 月 2 日 14:42

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by