Returns the hyperbolic cosine of the specified floating point angle value
Class: Mathematical
Parameters: @d – An angle measured in radians
Syntax: @returnValue=@cosh(@d)
Returns: The hyperbolic cosine of @d
Remarks: None
Example:
//Example for the mathematical @cosh method
@d=0.456 //Set angle value
@result=@cosh(@d) //Calculate result (= 1.10578)
message(“Hyperbolic Cosine of Angle “ + @d + “ (in radians) is “ + @result) //Display results message