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