Next: , Previous: SIN, Up: Intrinsic Procedures


6.182 SINH — Hyperbolic sine function

Description:
SINH(X) computes the hyperbolic sine of X.
Standard:
F95 and later
Class:
Elemental function
Syntax:
RESULT = SINH(X)
Arguments:

X The type shall be REAL(*).

Return value:
The return value is of type REAL(*).
Example:
          program test_sinh
            real(8) :: x = - 1.0_8
            x = sinh(x)
          end program test_sinh
     

Specific names:

Name Argument Return type Standard
DSINH(X) REAL(8) X REAL(8) F95 and later

See also:
ASINH