Function Description
Function ATAN2 returns the arc tangent of two arguments.
Examples
1 2 3 4 5 6 7 8 9 |
SELECT ATAN2(0.5, 0.5) FROM dual; Result: 0,785398163397448 SELECT ATAN2(0.7, 0.7) FROM dual; Result: 0,785398163397448 |
Function Description
Function ATAN2 returns the arc tangent of two arguments.
Examples
1 2 3 4 5 6 7 8 9 |
SELECT ATAN2(0.5, 0.5) FROM dual; Result: 0,785398163397448 SELECT ATAN2(0.7, 0.7) FROM dual; Result: 0,785398163397448 |