Categories:

Numeric functions (Trigonometric)

ASINH¶

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

Syntax¶

ASINH(  )
Copy

Arguments¶

real_expr

This expression should evaluate to a real number.

Examples¶

SELECT ASINH(2.129279455);

--------------------+
 ASINH(2.129279455) |
--------------------+
 1.5                |
--------------------+
Copy