Rev Language Reference


sinh - Hyperbolic Sine Function

Returns the hyperbolic sine of a real number.

Usage

sinh(Real x)

Arguments

x : Real (pass by const reference)
The value.

Return Type

Details

The function takes a hyperbolic angle `x` as its only argument, and returns sinh(x) = (exp(x) - exp(-x))/2.

Example

sinh(1)

See Also