functiongauss2mf - Extended Gaussian member function
gauss2mf compute the extended gaussian member function of x with parameters [a,b,c,d] . This member function need b<>0 , d<>0 .
x=linspace(0,1,100)';
y1=gauss2mf(x,[0.3 0.1 0.7 0.2]);
y2=gauss2mf(x,[0.2 0.1 0.5 0.2]);
xbasc();
plot2d(x,[y1 y2],leg="y1@y2");
xtitle("Extended Gaussian Member Function Example","x","mu(x)");
Jaime Urzua Grez