the
exp10
of
factor
exp10
(
expression )
Factor and expression yield integer
s, number
s, or complex
es.
put the exp10 of 4 -- yields 10000
The exp10
function returns the value of 10 raised to the power specified by its argument. That is, it returns:
10^number
The exp10
function is faster and more accurate than using the above formula.
If the argument is an integer
or a number
, a number
is returned. If the argument is a complex
, a complex
is returned.