- カテゴリ:
数値関数 (三角関数)
ATANH¶
引数の逆(アーク)双曲正接を計算します。
構文¶
ATANH( <input_expr> )
引数¶
input_exprThe value or expression to operate on. Must be a value between -1.0 and +1.0 (inclusive). 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 ATANH(0.9051482536); ---------------------+ ATANH(0.9051482536) | ---------------------+ 1.5 | ---------------------+