The ATan2 function, when calculated, returns the inverse tangent of the chosen point, specified by the x-coordinate and y-coordinate.
ATan2([X Coordinate],[Y Coordinate] )
Where:
X Coordinate is the x-coordinate of the point, that you want to find the inverse tangent of.
Y Coordinate is y-coordinate of the point, that you want to find the inverse tangent of.
Rule | Meaning |
---|---|
ATan2(XCoordinateTextBoxReturn, YCoordinateTextBoxReturn) | The ATan2 function returns the inverse tangent of the point, that is specified by the return value from the XCoordinateTextBox and the return value from the YCoordinateTextBox. |
XCoordinateTextBoxReturn Value | YCoordinateTextBoxReturn | Result of the ATAN2 function |
---|---|---|
5 | 3 | 0.380506377 |
-3 | 4 | 2.214297436 |
-20 | -2 | -3.041924001 |