cosh(x) computes the hyperbolic cosine of x.
FORTRAN 77 and later
x = cosh(x)
x - The type shall be real.The return value is of type real and it is positive (). The return value is of the same kind as x.
program test_cosh
real(8) :: x = 1.0_8
x = cosh(x)
end program test_cosh
Inverse function: acosh