ACOSH (The GNU Fortran Compiler) (original) (raw)

PROGRAM test_acosh REAL(8), DIMENSION(3) :: x = (/ 1.0, 2.0, 3.0 /) WRITE (,) ACOSH(x) END PROGRAM