Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

COSH(x)

SQL> --COSH(x): Returns the hyperbolic cosine of x. SQL> select COSH(3.1415926) from dual; COSH(3.1415926) ---------------      11.5919527 SQL> SQL>