Table of Contents

Search

  1. Preface
  2. The Transformation Language
  3. Constants
  4. Operators
  5. Variables
  6. Dates
  7. Functions
  8. Creating Custom Functions
  9. Custom Function API Reference

Transformation Language Reference

Transformation Language Reference

SINH

SINH

Returns the hyperbolic sine of the numeric value.

Syntax

SINH(
numeric_value
)
The following table describes the argument for this command:
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 transformation 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 port:
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!