Calculates the hyperbolic sine.
Sinh(x)
(f) x angle in radians.
(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.
real=AskLine("SinH", "Enter an angle between 0 and 360", "45", 0) answer=Sinh(real * @DEG2RAD) Message("Hyperbolic Sine of %real% degrees is", answer)