Skip to main content

ASINH

Description

Returns the hyperbolic arc sine of x.

Syntax

ASINH(<x>)

Parameters

ParameterDescription
<x>The value for which the hyperbolic arc sine value is to be calculated

Return Value

The asinh value of parameter x.

Example

select asinh(0.0);
+------------+
| asinh(0.0) |
+------------+
| 0 |
+------------+
select asinh(1.0);
+-------------------+
| asinh(1.0) |
+-------------------+
| 0.881373587019543 |
+-------------------+
select asinh(-1.0);
+--------------------+
| asinh(-1.0) |
+--------------------+
| -0.881373587019543 |
+--------------------+