witheve / Eve

Better tools for thought
http://witheve.com
Apache License 2.0
7.16k stars 257 forks source link

Add math/ln[] function #872

Closed cmontella closed 7 years ago

joshuafcole commented 7 years ago

Javascript's Math.log is actually mathematical ln (log_e). JS also has log10 in everyone including Edge, but it's not in IE. I'd consider naming this ln anyway, no reason to copy JS's weird decisions. Otherwise we could have a generic log[base, value]

cmontella commented 7 years ago

I think we should have a generic log function eventually, but a ln specific one is good too since it's so common.