# Compute the argument (phase) of complex values.

arg = function (z)
{
  return atan2 (imag (z); real (z));
};


syntax highlighted by Code2HTML, v. 0.9.1