atan2x
atan2X is not a standard mathematical function, but a generalized form of the two-argument arctangent used in some software libraries and theoretical contexts to incorporate an extra parameter that modifies the input before applying the arctangent. The specific semantics of atan2X vary by implementation, so a definition should be taken from the accompanying documentation.
One common interpretation is to introduce a scalar scaling parameter s that acts on the x input
Other uses of the notation may describe atan2X as representing an angle relative to a rotated reference
Implementation notes: in code, the common scalable form can be computed as angle = atan2(y, s*x). Care