Table of Contents

Search

  1. Preface
  2. Function reference
  3. Constants
  4. Operators
  5. Dates
  6. Functions
  7. System variables
  8. Datatype reference

Function Reference

Function Reference

SINH

SINH

Returns the hyperbolic sine of the numeric value.

Syntax

SINH(
numeric_value
)
Argument
Required/
Optional
Description
numeric_value
Required
Numeric datatype. Numeric data expressed in radians (degrees multiplied by pi divided by 180). Passes the values for which you want to calculate the hyperbolic sine. You can enter any valid expression.

Return Value

Double value.
NULL if a value passed to the function is NULL.

Example

The following expression returns the hyperbolic sine for the values in the ANGLES column:
SINH( ANGLES )
ANGLES  
RETURN VALUE
1.0
1.1752011936438
2.897
9.03225804884884
3.66
19.4178051793031
5.45
116.376934801486
0
0.0
0.345
0.35188478309993
NULL
NULL

Tip

You can perform arithmetic on the values passed to SINH before the function calculates the hyperbolic sine. For example:
SINH( MEASURES.ARCS / 180 )

0 COMMENTS

We’d like to hear from you!