[UP]


Manual Reference Pages  - cosh (3)

NAME

cosh(3f) - [FORTRAN:INTRINSIC:TRIGONOMETRIC] Hyperbolic cosine function

CONTENTS

Syntax
Description
Arguments
Return Value
Example
Standard
Class
See Also

SYNTAX

x = cosh(x)

DESCRIPTION

cosh(x) computes the hyperbolic cosine of X.

ARGUMENTS

X - The type shall be REAL or COMPLEX.

RETURN VALUE

The return value has same type and kind as X. If X is complex, the imaginary part of the result is in radians. If X is REAL, the return value has a lower bound of one, cosh(x) >= 1.

EXAMPLE

Sample program:

   program demo_cosh
     real(8) :: x = 1.0_8
     x = cosh(x)
   end program demo_cosh

STANDARD

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

CLASS

[[Elemental procedure|Elemental function]]

SEE ALSO

Inverse function: [[acosh]]


cosh (3) March 18, 2019
Generated by manServer 1.08 from 447e87e3-9c7c-483e-bd64-09fc207f34cf using man macros.