[UP]


Manual Reference Pages  - asinh (3)

NAME

asinh(3f) - [FORTRAN:INTRINSIC:TRIGONOMETRIC] Inverse hyperbolic sine function

CONTENTS

Syntax
Description
Arguments
Return Value
Example
Standard
Class
See Also

SYNTAX

result = asinh(x)

DESCRIPTION

asinh(x) computes the inverse hyperbolic sine of X.

ARGUMENTS

X - The type shall be REAL or COMPLEX.

RETURN VALUE

The return value is of the same type and kind as X. If X is complex, the imaginary part of the result is in radians and lies between -PI/2 <= AIMAG(ASINH(X)) <= PI/2.

EXAMPLE

Sample program:

   program demo_asinh
     real(8), dimension(3) :: x = (/ -1.0, 0.0, 1.0 /)
     write (*,*) asinh(x)
   end program demo_asinh

STANDARD

[[Fortran 2008]] and later

CLASS

[[Elemental function]]

SEE ALSO

Inverse function: [[sinh]]


asinh (3) March 18, 2019
Generated by manServer 1.08 from c8970c30-a7bf-4d18-8b62-88ae3b9d289c using man macros.