static float log(float a)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
This method returns the natural logarithm (base e) of a float value.
Note
Example
Draw.writeText("data: " + Math.log(3.2315523f));
The example above draws the calculated value to the screen.