Logo

ASINH

Updated 2023-10-13 14:38:15.887000

Syntax

SELECT [westclintech].[wct].[ASINH] (
   <@Number, float,>)

Description

Use ASINH to calculate the inverse hyperbolic sine of a number.

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.

{"columns":[{"field":"column 1","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"column 1":"1.86229574331085"}]}