Returns the common LOGarithm of the real-exp. The natural logarithm, to base e, can be found by using the expression:
2.30258 * LOG (real-exp)
The accuracy is 0.0001%.
Program Example
00100 LET AO = 9 00110 PRINT LOG(9),LOG(A0) 00120 END
Try it