Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference

ID 767251
Date 9/08/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

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)

CQEXP10

COMPLEX(16)

COMPLEX(16)

1The setting of compiler options specifying real size can affect CEXP10.

Example

EXP10 (2.0) has the value 100.00.

EXP10 (1.3) has the value 19.95262.

See Also