Cosh

Calculates the hyperbolic cosine.

Syntax:

Cosh( x )

Parameters:

(f) x: angle in radians.

Returns:

(f) the Cosh function returns the hyperbolic cosine of x.

 

Calculates the hyperbolic cosine. If the result is too large, the function will return an error.

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

 

Example:


real=AskLine("Cosh", "Enter an angle in degrees (0 to 360)", "45", 0)
answer=Cosh(real * @DEG2RAD)
Message("Hyperbolic cosine of %real% degrees is",answer)
See Also:

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