Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

COSH() function returns the hyperbolic cosine of numeric expression

SQL> Syntax: COSH(<numeric expression>) SQL> SQL> SELECT COSH(.5) AS RESULT FROM DUAL;     RESULT ---------- 1.12762597 SQL> SQL> SQL>