G.f. method
Returns the arc tangent of one angle divided by another.
atan2 x y => z
<real>. The first angle, in radians.
<real>. The second angle, in radians.
<float>.
common-extensions
transcendentals
Returns the arc tangent of x divided by y. x may be zero if y is not zero. The signs of x and y are used to derive what quadrant the angle falls in.
The floating point precision of the result is given by the precision of x/y. The result is a single-float if x/y is an integer.