exp10[]

Compute base-10 exponential function.

Returns the base-10 exponential function of x, which is 10 raised to the power x, 10x.

Syntax

exp10[x]

Parameters

x Value of the exponent.
Return Value 10 raised to the power of x.

Examples

#<result> = exp10[3]
(print,#<result>)

result: 1000

See also

log10