71
edits
m (→Examples) |
|||
Line 19: | Line 19: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
float lnNum = Math.Log(5 | float lnNum = Math.Log(5.89) ; lnNum ≈ 1.773256 | ||
</source> | </source> | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; there's no function that returns simple logarithm, but you can get it yourself | ; there's no function that returns simple logarithm, but you can get it yourself | ||
; | ; 0.434294 = lofarithm of Euler's number (2.71828) | ||
float logNum = (Math.Log(5 | float logNum = (Math.Log(5.89)) * 0.434294 ; logNum ≈ 0.770114 (keep in mind, the result is not completely accurate) | ||
</source> | </source> | ||
edits