atan2s
atan2s is a term encountered in certain programming and mathematical contexts to denote a two-argument arctangent operation, typically a variant or vectorized form of the standard atan2 function. In practice, atan2s computes the angle θ whose tangent is the quotient of two coordinates, while correctly accounting for the quadrant in which the point lies.
In its common scalar form, atan2s(y, x) returns the angle θ such that tan(θ) = y/x, with θ positioned
Many environments also implement atan2s as a vectorized or element-wise variant, operating on arrays or lists
Relation to other functions: atan2s is closely related to the single-argument arctangent and to atan2 itself;