Numeric Math Functions Oracle PLSQL

SQL>
SQL> --ATAN2(x, y):Returns the arctangent of x and y.
SQL>
SQL> select ATAN2(1, -1) from dual;
ATAN2(1,-1)
-----------
 2.35619449
SQL>