Next: ADJUSTL, Previous: ACOS, Up: Intrinsic Procedures
ACOSH — Hyperbolic arccosine functionACOSH(X) computes the hyperbolic arccosine of X (inverse of
COSH(X)).
RESULT = ACOSH(X)
| X | The type shall be REAL(*) with a magnitude that is
greater or equal to one.
|
REAL(*) and it lies in the
range 0 \leq \acosh (x) \leq \infty.
PROGRAM test_acosh
REAL(8), DIMENSION(3) :: x = (/ 1.0, 2.0, 3.0 /)
WRITE (*,*) ACOSH(x)
END PROGRAM
| Name | Argument | Return type | Standard
|
DACOSH(X) | REAL(8) X | REAL(8) | GNU extension
|