Categories: Math
COSH
Computes the hyperbolic cosine of a value in radians.
Syntax
COSH(numeric_expression NUMERIC) → FLOAT
- numeric_expression: The number in radians. This must be DOUBLE, INTEGER, or FLOAT.
Examples
COSH exampleSELECT COSH(0)
-- 1.0
SELECT COSH(1.0)
-- 1.543080634815244
SELECT COSH(-1)
-- 1.543080634815244
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.