Calculates the hyperbolic cosine.
Cosh( x )
(f) x: angle in radians.
(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.
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)