LlLog

From Second Life Wiki

Jump to: navigation, search

Contents

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));
  }
}
 

See Also

Functions

•  llLog10
•  llPow
•  llSqrt

Articles

•  Wikipedia:Natural_logarithm
Personal tools