Sinh

Calculates the hyperbolic sine.

Syntax:

Sinh(x)

Parameters:

(f) x angle in radians.

Returns:

(f) the hyperbolic sine of x.

 

Calculates the hyperbolic sine. If the passed parameter is large, a loss in significance in the result or significance error may occur.

Note: To convert an angle measured in degrees to radians, simply multiply by the constant @Deg2Rad.

Example:


real=AskLine("SinH", "Enter an angle between 0 and 360", "45", 0)
answer=Sinh(real * @DEG2RAD)
Message("Hyperbolic Sine of %real% degrees is", answer)
See Also:

Acos, Asin, Atan, Cos, Cosh, Sin, Tan, Tanh