EXP (real-exp)

Returns the value of e (2.718281828) raised to the real-exp power. The accuracy is about 0.001% for the normal range. This is the equivalent of taking the NATURAL anti-logarithm of the expression.

Program Example.

00100 LET A0 = 9
00110 PRINT EXP(9),EXP(A0)
00120 END 

Try it