COSH() function returns the hyperbolic cosine of . : COSH « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- COSH
COSH() function returns the hyperbolic cosine of .
SQL>
Syntax: COSH(<numeric expression>)
SQL>
SQL> SELECT COSH(.5) AS RESULT FROM DUAL;
RESULT
----------
1.12762597
SQL>
SQL>
SQL>
Related examples in the same category