llLog10

From Second Life Wiki
Revision as of 17:28, 12 February 2008 by Ollj Oh (talk | contribs) (br fix)
Jump to navigation Jump to search

Summary

Function: float llLog10( float val );

Returns a float that is the base 10 "Wikipedia logo"logarithm of val.
If val <= 0 return zero instead.

• float val

To get the "Wikipedia logo"natural logarithm use llLog.

Caveats

  • there is no function for log2(n) or other bases than 10 or e.
    integer LogBASEn=llCeil(llLog10(n+1)/llLog10(BASE)) //results in rounding errors.
All Issues ~ Search JIRA for related Bugs

Examples

default
{
  state_entry()
  {
    float num1 = llFrand(100.0);

    llOwnerSay("The base 10 logarithm of " + (string)num1 + " is " + (string)llLog10(num1));
  }
}

See Also

Functions

•  llLog
•  llPow
•  llSqrt

Articles

•  "Wikipedia logo"Logarithm

Deep Notes

Search JIRA for related Issues

Signature

function float llLog10( float val );