SINH scalar function

The SINH function returns the hyperbolic sine of the argument, where the argument is an angle, expressed in radians.

Read syntax diagramSkip visual syntax diagramSINH( numeric-expression)

The schema is SYSIBM.

The argument must be an expression that returns the value of any built-in numeric data type that is not DECFLOAT. If the argument is not a double precision floating-point number, it is converted to one for processing by the function.

The result of the function is a double precision floating-point number.

The result can be null; if the argument is null, the result is the null value.

Examples

Example 1:
Assume that host variable HSINE is DECIMAL(2,1) with a value of 1.5. The following statement returns a double precision floating-point number with an approximate value of 2.12.
   SELECT SINH(:HSINE)
     FROM SYSIBM.SYSDUMMY1;