Function Sinh(x)

Sinh

Sinh(
    x             ! (input) numerical expression
    )

Arguments

x

A scalar numerical expression.

Return Value

The Sinh function returns the hyperbolic sine of x in the range \(-\infty\) to \(\infty\).

Graph

../../_images/sinh.png

Example

_p_returnA := SinH( 0    ); ! SinH( 0   ) = 0
_p_returnB := SinH( 1    ); ! SinH( 1   ) = 1.175201193644
_p_returnC := SinH( p_pi ); ! SinH( π   ) = 11.548739357258
_p_returnD := SinH( 10   ); ! SinH( 1e3 ) = 11013.232874703393

Note

The function Sinh can be used in the constraints of nonlinear mathematical programs.

See also

The functions Cosh, Tanh, ArcSinh. Arithmetic functions are discussed in full detail in Arithmetic Functions of the Language Reference.