atan2y
atan2y is a term encountered in some programming and mathematical contexts to refer to a two-argument arctangent function, typically an alias or wrapper around atan2. The standard name for this functionality is atan2(y, x), and the exact behavior is defined by the library or language being used.
The function returns the angle θ between the positive x-axis and the point with coordinates (x, y).
Usage and examples: atan2y(y, x) yields θ such that tan(θ) = y/x with the quadrant determined by x
Relation to atan2: atan2y is most often just another name or a thin wrapper for the standard