p5.js中的sqrt()函數用於獲取任何輸入數字的平方根。
用法:
sqrt(n)
參數:此函數接受單個參數n,該參數n為輸入非負數,其平方根正在計算中。
返回值:它返回任何輸入數字的平方根。
以下示例程序旨在說明p5.js中的sqrt()函數:
例:本示例使用sqrt()函數獲取輸入數字的平方根。
function setup() {
// Create Canvas of size 270*80
createCanvas(350, 80);
}
function draw() {
// Set the background color
background(220);
// Initialize the parameter
let a = 25;
let b = 16;
// Call to sqrt() function
let x = sqrt(a);
let y = sqrt(b);
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting output
text("Square root of 25 is: " + x, 50, 30);
text("Square root of 16 is: " + y, 50, 50);
}
輸出:
參考: https://p5js.org/reference/#/p5/sqrt
相關用法
- PHP sqrt( )用法及代碼示例
- Javascript Math.sqrt( )用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js value()用法及代碼示例
- PHP pi( )用法及代碼示例
- CSS rgb()用法及代碼示例
- PHP end()用法及代碼示例
- p5.js cos()用法及代碼示例
- p5.js int()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 p5.js | sqrt() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。