Next: , Previous: SIN, Up: Intrinsic Procedures


8.97 SINH — Hyperbolic sine function

Description:
SINH(X) computes the hyperbolic sine of X.
Option:
f95, gnu
Class:
elemental function
Syntax:
X = 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 Option
DSINH(X) REAL(8) X REAL(8) f95, gnu