XLeratorDB/math Documentation
ASINH
Updated: 17 August 2010
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 Types
float
Remarks
· ASINH = Log(@Number + (@Number * @Number + 1) ^ (1 / 2))
Example
SELECT wct.ASINH(PI())
Here is the result set
----------------------
1.86229574331085
(1 row(s) affected)