SQL Server ASINH Function
Updated 2023-10-13 14:38:15.887000
Description
Use ASINH to calculate the inverse hyperbolic sine of a number.
Syntax
SELECT [westclintech].[wct].[ASINH] (
<@Number, float,>)
Arguments
@Number
is any real number. @Number is an expression of type float or of a type that can be implicitly converted to float.
Return Type
float
Remarks
ASINH = Log(@Number + (@Number * @Number + 1) ^ (1 / 2)).
Examples
SELECT wct.ASINH(PI());
Here is the result set.
| column 1 |
|---|
| 1.86229574331085 |