Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 1.38 KB

exp.adoc

File metadata and controls

77 lines (42 loc) · 1.38 KB

exp, exp2, exp10, expm1 (including half_ and native_)

Exponent functions.

gentype exp(gentype x)

gentype exp2(gentype)

gentype exp10(gentype)

gentype expm1(gentype x)

gentype half_exp(gentype x)

gentype half_exp2(gentype x)

gentype half_exp10(gentype x)

gentype native_exp(gentype x)

gentype native_exp2(gentype x)

gentype native_exp10(gentype x)

Description

exp computes the base- e exponential of x.

exp2 is the exponential base 2 function.

exp10 is the exponential base 10 function.

expm1 computes ex - 1.0.

half_exp computes the base- e exponential of x.

half_exp2 computes the base- 2 exponential of x.

half_exp10 computes the base- 10 exponential of x.

native_exp computes the base- e exponential of x over an implementation-defined range. The maximum error is implementation-defined.

native_exp2 computes the base- 2 exponential of x over an implementation-defined range. The maximum error is implementation-defined.

native_exp10 computes the base- 10 exponential of x over an implementation-defined range. The maximum error is implementation-defined.