SINH

The SINH function returns the hyperbolic sine of a number.

This function takes a single Number as input. It outputs that Number's hyperbolic sine.

Declaration

SINH(number) -> hyperbolic_sine

Parameters

number (required, type: Number)

The number to calculate the hyperbolic sine of.

Return Values

hyperbolic_sine (type: Number)

The hyperbolic sine of the given number.

Examples

The following example returns the hyperbolic sine of 1:

SINH(1) -> 1.1752011936438014

Last updated