Developer Guide and Reference

ID 767251
Date 10/31/2024
Public
Document Table of Contents

EXP10

Elemental Intrinsic Function (Generic): Computes a base 10 exponential value.

Syntax

result = EXP10 (x)

x

(Input) Must be of type real or complex.

Results

The result type and kind are the same as x. The value is 10 raised to the power of x. If x is of type complex, its imaginary part is regarded as a value in radians.

Specific Name

Argument Type

Result Type

EXP10

REAL(4)

REAL(4)

DEXP10

REAL(8)

REAL(8)

QEXP10

REAL(16)

REAL(16)

CEXP10 1

COMPLEX(4)

COMPLEX(4)

CDEXP10

COMPLEX(8)

COMPLEX(8)

Example

EXP10 (2.0) has the value 100.00.

EXP10 (1.3) has the value 19.95262.

See Also