Next: COUNT, Previous: COS, Up: Intrinsic Procedures
COSH — Hyperbolic cosine functionCOSH(X) computes the hyperbolic cosine of X.
     X = COSH(X)
     | X | The type shall be REAL(*). | 
REAL(*) and it is positive
( \cosh (x) \geq 0 .
               program test_cosh
            real(8) :: x = 1.0_8
            x = cosh(x)
          end program test_cosh
     
     | Name | Argument | Return type | Option | 
| DCOSH(X) | REAL(8) X | REAL(8) | f95, gnu |