Calculates the hyperboliccosine of the input variable.
If x is an array, the result of COSH has the same dimensions, with each element containing the hyperbolic cosine of the corresponding element of x.
x = [0.3, 0.5, 0.7, 0.9] PRINT, COSH(x)
1.04534 1.12763 1.25517 1.43309
For a list of other transcendental functions, see Transcendental Mathematical Functions in Chapter 1.