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)
exp
computes the base- e exponential of x
.
exp2
is the exponential base 2 function.
exp10
is the exponential base 10 function.
expm1
computes e
x - 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.