[UP]


Manual Reference Pages  - sinh (3)

NAME

sinh(3f) - [FORTRAN:INTRINSIC:MATHEMATICS:TRIGONOMETRIC] Hyperbolic sine function

SYNTAX

result = sinh(x)

DESCRIPTION

sinh(x) computes the hyperbolic sine of X.

ARGUMENTS

X The type shall be REAL or COMPLEX.

RETURN VALUE

The return value has same type and kind as X.

EXAMPLE

Sample program:

   program demo_sinh
   use, intrinsic :: iso_fortran_env, only : real_kinds, real32, real64, real128
   implicit none
     real(kind=real64) :: x = - 1.0_real64
     x = sinh(x)
   end program demo_sinh

STANDARD

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

CLASS

Elemental function

SEE ALSO

asinh(3)


sinh (3) March 11, 2021
Generated by manServer 1.08 from 9d4dc855-fc82-4da3-aceb-6dfe0cfc271c using man macros.