カテゴリ:

数値関数 (三角関数)

ACOSH

入力の逆(アーク)双曲線余弦を計算します。

構文

ACOSH( <input_expr> )
Copy

引数

input_expr

The value or expression to operate on. Must be greater than or equal to 1.0. The data type must be FLOAT.

戻り値

This function returns a value of type FLOAT.

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