function y = absval(x)
if x >= 0
    y = x;
else
    y = -x;
end