Next: ASSOCIATED, Previous: ASIN, Up: Intrinsic Procedures
ASINH
— Hyperbolic arcsine functionASINH(X)
computes the hyperbolic arcsine of X (inverse of SINH(X)
).
RESULT = ASINH(X)
X | The type shall be REAL(*) , with X a real number.
|
REAL(*)
and it lies in the
range -\infty \leq \asinh (x) \leq \infty.
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.
|