📜  p5.js | pow()函数

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

p5.js | pow()函数

p5.js 中的pow()函数用于计算数字对给定数字的幂。这是一种将数字本身(或它们的倒数)大量相乘的有效方法。

句法

pow( n, e )

参数:该函数接受上面提到的两个参数,如下所述:

  • n:此参数存储指数表达式的基数。
  • e:此参数存储提升底座的功率。

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

    示例:此示例使用 pow()函数计算数字的幂。

    function setup() {
      
        // Create Canvas of size 270*80  
        createCanvas(350, 80);
    }
       
    function draw() {
          
        // Set the background color
        background(220);
          
        // Initialize the parameter  
        let n = 3;
        let e = 4;
          
        // Call to pow() function
        let y = pow(n, e);
          
        // Set the size of text
        textSize(16);
          
        // Set the text color
        fill(color('red'));
          
        text("Given number is " + n + " and exponent is " 
                +  e + " ", 50, 30);
        text("Computed Number is : " + y, 50, 50);
    }
    

    输出:

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