LlLog

来自人工智能助力教育知识百科
Ty讨论 | 贡献2020年8月22日 (六) 03:31的版本 (创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: float llLog( float val ); |参数= 参数: float val |…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

Template:Needs Translation/


函数名
Function: float llLog( float val );
参数:
float	val
返回值:

返回一个浮点数,这个浮点数是自然对数。

注意事项
示例
示例一
default
{
  state_entry()
  {
    float num1 = llFrand(100.0);
 
    llOwnerSay("The natural logarithm of " + (string)num1 + " is " + (string)llLog(num1));
  }
}

示例二

float findexp(float result, float base)
{
    return llLog(result)/llLog(base);
}
default
{
    touch_start(integer total_number)
    {
        llSay(0, (string)findexp(8.0,2.0));
        //returns 3.0
    }
}
相关函数
llLog10

llPow

llSqrt

相关事件