Returns thehyperbolic sine of the input variable.
If x is an array, the result of SINH has the same dimensions, with each element containing the hyperbolic sine of the corresponding element of x.
x = [0.3, 0.5, 0.7, 0.9] PRINT, SINH(x)
0.304520 0.521095 0.758584 1.02652
For a list of other transcendental functions, see Transcendental Mathematical Functions in Volume 1 of this reference.