Categories:

Numeric functions (Trigonometric)

ATANH¶

Computes the inverse (arc) hyperbolic tangent of its argument.

Syntax¶

ATANH( <input_expr> )
Copy

Arguments¶

input_expr

The 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.

Examples¶

SELECT ATANH(0.9051482536);

---------------------+
 ATANH(0.9051482536) |
---------------------+
 1.5                 |
---------------------+
Copy