function [ cz ] = funccz(alpha,alpha0,x)
%
if(x>=0)
cz=alpha*x*(x-alpha0);
else
    cz=-alpha*x*(x+alpha0);

end


