LOG()

Compatible with:
DOS Maximite CMM MM150 MM170 MM+ MMX Picromite ArmiteL4 Armite F4 ArmiteH7 Picomite CMM2

Syntax:
LOG( number )

Description:
Returns the natural logarithm base value e (2.718281828) of the argument 'number'.
LOG(0) will result in a 'divide by zero' error and
log(negative num) will result in 'Error: Negative argument'

 

PRINT LOG(10)
PRINT LOG(1)
PRINT LOG(0.00001)

Output:
2.302585093
0
-11.51292546


 

Last edited: 29 September, 2020