- カテゴリ:
数値関数 (三角関数)
ASINH¶
因数の逆(アーク)双曲正弦を計算します。
構文¶
ASINH( <input_expr> )
引数¶
input_exprThe value or expression to operate on. The data type must be FLOAT or DECFLOAT.
Returns¶
If the input expression is of type DECFLOAT, the returned type is DECFLOAT. Otherwise, the returned type is FLOAT.
例¶
SELECT ASINH(2.129279455); --------------------+ ASINH(2.129279455) | --------------------+ 1.5 | --------------------+