Kategorien:

Numerische Funktionen (Trigonometrisch)

COSH

Berechnet den hyperbolischen Kosinus des Arguments.

Syntax

COSH( <input_expr> )
Copy

Argumente

input_expr

The value or expression to operate on. The data type must be FLOAT.

Rückgabewerte

This function returns a value of type FLOAT.

Beispiele

SELECT COSH(1.5);
Copy
+-------------+
|   COSH(1.5) |
|-------------|
| 2.352409615 |
+-------------+