_ATAN2
Revision as of 17:02, 14 November 2015 by imported>Clippy (Created page with '{{DISPLAYTITLE:_ATAN2}} The '''_ATAN2''' function returns the radian angle between the positive x-axis of a plane and the point given by the coordinates (x, y) on it. {{PageSyn…')
The _ATAN2 function returns the radian angle between the positive x-axis of a plane and the point given by the coordinates (x, y) on it.
Syntax
- angle! = _ATAN2( y, x)
Parameters
- y is the vertical axis position(row) as a floating point value.
- x is the horizontal axis position(column) as a floating point value.
Description
- The angle is positive for counter-clockwise angles (upper half-plane, y > 0), and negative for clockwise angles (lower half-plane, y < 0).
- _ATAN2(y, x) = ATN(y / x) when x > 0
- _ATAN2(y, x) = ATN(y / x) + _PI when x < 0 and y >= 0
- _ATAN2(y, x) = ATN(y / x) - _PI when x < 0 and y < 0
- _ATAN2(y' x) = _PI / 2 when x = 0 and y > 0
- _ATAN2(y, x) = -_PI / 2 when x = 0 and y < 0
- _ATAN2(0, 0) is undefined and returns 0.
Errors
See also
- ATN (arctangent)