ATANH — Inverse hyperbolic tangent functionATANH(X) computes the inverse hyperbolic tangent of X.
RESULT = ATANH(X)
| X | The type shall be REAL or COMPLEX.
|
PROGRAM test_atanh
REAL, DIMENSION(3) :: x = (/ -1.0, 0.0, 1.0 /)
WRITE (*,*) ATANH(x)
END PROGRAM
| Name | Argument | Return type | Standard
|
DATANH(X) | REAL(8) X | REAL(8) | GNU extension
|