EXP( ) |
Raise to Base Ten |
EXP(num[,ERR=stmtref])
| |
num |
Power of 10 to be returned. Numeric expression. |
stmtref |
Program line number or statement label to which to transfer control. |
Value of 10 raised to the power of the numeric value.
The EXP( ) function returns the value of 10 raised to the power of a given numeric value (i.e. 10^num). Fractions are allowed. The numeric value returned is rounded to the current PRECISION in effect. This is the inverse of the LOG( ) function.
print exp(log(90)/3), ! Print cube root of 90
print exp(3),exp(2.1)
->run
4.47 1000 125.89