
function [ dcx ] = funcdcx(beta,x)
%
if(x>=0)
    
dcx=beta;
else
    dcx=-beta;
end
