The 'log' function returns the base-e logarithm value.
double @log(double d);
Parameters
double d : value that you want to calculate
Return Value
base-e logarithm value
Example
val = @log(9000);
Description : The base-e logarithm of '9000' is stored in the variable named 'val'. (val = 9.104980)
Reference