📜  p5.js |日志()函数

📅  最后修改于: 2022-05-13 01:56:41.768000             🧑  作者: Mango

p5.js |日志()函数

p5.js 中的log()函数用于获取作为 log()函数参数输入的任意数字的自然对数(以“e”为底)。

句法:

log(x)

参数:此函数接受单个参数x ,它是大于零 (0) 的任何数字,作为要计算其自然对数的输入。

返回值:它返回任何大于零 (0) 的输入数字的自然对数。

下面的程序说明了 p5.js 中的 log()函数:

示例:此示例使用 log()函数来获取任何输入数字的自然对数值。

Javascript
function setup() {
  
    // Create Canvas of size 270*80
    createCanvas(550, 130);
}
  
function draw() {
      
    // Set the background color
    background(220);
      
    // Initialize the parameter
    let a = 5;
    let b = 7.7;
    let c = 0;
    let d = -5;
      
    // Call to log() function
    let v = log(a);
    let w = log(b);
    let x = log(c);
    let y = log(d);
      
    // Set the size of text
    textSize(16);
      
    // Set the text color
    fill(color('red'));
    
    // Getting natural log value
    text("Natural logarithm value of 5 is : " + v, 50, 30);
    text("Natural logarithm value of 7.7 is : " + w, 50, 50);
    text("Natural logarithm value of 0 is : " + x, 50, 70);
    text("Natural logarithm value of -5 is : " + y, 50, 90);
       
}


输出:

注意:如果我们将输入作为负值和零,那么它分别将输出返回为“NaN”和 -Infinity。

参考: https://p5js.org/reference/#/p5/log