當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js pow()用法及代碼示例


p5.j​​s中的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



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | pow() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。