Logo

SINH

Updated 2023-10-13 14:51:47.893000

Syntax

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

Description

Use the scalar function SINH to calculate the 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

SINH = (EXP(@Number) - EXP(-@Number)) / 2.

Examples

SELECT wct.SINH(PI());

Here is the result set.

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