Compute the natural (base e) logarithm of a number.
returnedFlt = log(numFlt)
returnedFlt - type: float
numFlt - type: float
The natural logarithm of the given number.
Analogous to the log function in C/C++. The argument must be positive. See logten for the base 10 logarithm.
@CODE
"output.txt" << log(2.718282) << "\n";
@@CODE
Outputs:
1