- Categories:
Numeric functions (Trigonometric)
TANH¶
Computes the hyperbolic tangent of its argument.
Syntax¶
TANH( <real_expr> )
Arguments¶
input_exprThe value or expression to operate on. The data type must be FLOAT.
Returns¶
This function returns a value of type FLOAT.
Examples¶
SELECT TANH(1.5);
+--------------+
| TANH(1.5) |
|--------------|
| 0.9051482536 |
+--------------+