VeloDB Cloud
SQL Manual
SQL Functions
Numeric Functions
COSH

cosh

description

Syntax

DOUBLE cosh(DOUBLE x) Returns the hyperbolic cosine of x.

example

mysql> select cosh(0);
+---------+
| cosh(0) |
+---------+
|       1 |
+---------+

mysql> select cosh(1);
+---------------------+
| cosh(1)             |
+---------------------+
| 1.5430806348152437  |
+---------------------+

keywords

COSH