gaussmf函数

来源:互联网 发布:数据库系统原理 编辑:程序博客网 时间:2024/06/15 21:47

Gaussian curve membership function。

Syntax:y = gaussmf(x,[sig c]) 
Description:
   The symmetric Gaussian function depends on two parameters σ and c as given by
                  f(x;σ,c)=exp(−(x−c)^2/2σ^2)
   The parameters for gaussmf represent the parameters σ and c listed in order in the vector [sig c].

eg:MATLAB:Ex=5; σ =2;

x = 0:0.1:10;
y = gaussmf(x,[2 5]);
y1= exp(-(x - 5).^2./(2.*2.^2));
figure
plot(x,y)
xlabel('gaussmf, P=[2 5]')
figure
plot(x,y1)

xlabel('exp, P=[2 5]')

两图一样。



0 0