function y = absval2(x)
y = x;
if y < 0
  y = -y;
end