XLeratorDB/math Documentation
SINH
Updated: 17 August 2010
Use SINH to calculate the hyperbolic sine of a number.
Syntax
SELECT [westclintech].[wct].[SINH] (
<@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
· SINH = (EXP(@Number) - EXP(-@Number)) / 2
Example
SELECT wct.SINH(PI())
Here is the result set
----------------------
11.5487393572577
(1 row(s) affected)