[UP]


Manual Reference Pages  - exp (3)

NAME

exp(3f) - [FORTRAN:INTRINSIC:MATHEMATICS] Exponential function

CONTENTS

Syntax
Description
Arguments
Return Value
Example
Standard
Class

SYNTAX

result = exp(x)

DESCRIPTION

exp(x) computes the base "e" exponential 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_exp
      real :: x = 1.0
      x = exp(x)
    end program demo_exp

STANDARD

[[FORTRAN 77]] and later

CLASS

[[Elemental procedure|Elemental function]]


exp (3) March 18, 2019
Generated by manServer 1.08 from 47f63064-03ae-4aa0-9716-546b4be56e85 using man macros.