functionpimf - Pi-Shaped member function.
zmf compute the z-shaped member function of x with parameters [a,b,c,d] .
x=linspace(0,1,100)';
y1=pimf(x,[0.1 0.4 0.9 1.0]);
y2=pimf(x,[0.3 0.6 0.7 0.8]);
y3=pimf(x,[0.4 0.7 0.6 0.8]);
xbasc();
plot2d(x,[y1 y2 y3],leg="y1@y2@y3");
xtitle("Pi-Shaped Member Function Example","x","mu(x)");
Jaime Urzua Grez