LlLog
From Second Life Wiki
(Redirected from LSL llLog)
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Description
Function: float llLog( float val );| 265 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns a float that is the natural logarithm of val.
If val <= 0 return 0.0 instead.
| • float | val |
To get the base 10 logarithm use llLog10.
Examples
default { state_entry() { float num1 = llFrand(100.0); llOwnerSay("The natural logarithm of " + (string)num1 + " is " + (string)llLog(num1)); } }

