ASINH
— Inverse hyperbolic sine function ¶RESULT = ASINH(X)
ASINH(X)
computes the inverse hyperbolic sine of X.
Elemental function
X | The type shall be REAL or COMPLEX . |
The return value is of the same type and kind as X. If X is complex, the imaginary part of the result is in radians and lies between -\pi/2 \leq \Im \asinh(x) \leq \pi/2.
PROGRAM test_asinh REAL(8), DIMENSION(3) :: x = (/ -1.0, 0.0, 1.0 /) WRITE (*,*) ASINH(x) END PROGRAM
Name | Argument | Return type | Standard |
---|---|---|---|
DASINH(X) | REAL(8) X | REAL(8) | GNU extension. |
Fortran 2008 and later
Inverse function:
SINH
— Hyperbolic sine function