Numeric Math Functions Oracle PLSQL

SQL>
SQL> --TANH(x): Returns the hyperbolic tangent of x.
SQL>
SQL> select TANH(1) from dual;
   TANH(1)
----------
.761594156
SQL>