Adds log2, log10, and log with ability to compute logarithm with arbitrary base.
For instance, I've come up with a way to calculate number of trials in order to achieve some success rate for some probability event via script, which requires finding x in:
Adds
log2
,log10
, andlog
with ability to compute logarithm with arbitrary base.For instance, I've come up with a way to calculate number of trials in order to achieve some success rate for some probability event via script, which requires finding
x
in:1 - (1 - p)^x
: