当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。