functiongaussmf - Gaussian member function
gaussmf compute the gaussian member function of x with parameters [a,b] . This member function need b<>0 .
The gaussmf function is defined by:

x=linspace(0,1,100)';
y1=gaussmf(x,[0.3 0.1]);
y2=gaussmf(x,[0.5 0.2]);
y3=gaussmf(x,[0.7 0.3]);
xbasc();
plot2d(x,[y1 y2 y3],leg="y1@y2@y3");
xtitle("Gaussian Member Function Example","x","mu(x)");
Jaime Urzua Grez