Fortran Wiki
sinh

Description

sinh(x) computes the hyperbolic sine of x.

Standard

Fortran 95 and later, for a complex argument Fortran 2008 or later

Class

Elemental function

Syntax

result = sinh(x)

Arguments

  • x - The type shall be real or complex.

Return value

The return value has same type and kind as x.

Example

program test_sinh
  real(8) :: x = - 1.0_8
  x = sinh(x)
end program test_sinh

See also

asinh

category: intrinsics