p5.js中的min()函數用於從數字序列中獲取最小值。
用法:
min(a, b)
或者
min(arr)
參數:min(a,b)函數接受兩個參數,這兩個參數是兩個不同的數字,並進行比較以獲得其中的最小值。 min(arr)函數接受單個參數數組。
返回值:它返回不同數字之間的最小值。
以下示例程序旨在說明p5.js中的min()函數:
例:本示例使用min()函數獲取最小值。
function setup() {
// Create Canvas of size 270*80
createCanvas(350, 130);
}
function draw() {
// Set the background color
background(220);
// Call to min() function
let u = min(1, 3);
let v = min(1, 1);
let w = min(5, 9);
let x = min(2, 3.9);
let y = min(1.5, 3.2);
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting minimum value
text("Minimum value between (1, 3) is: " + u, 50, 30);
text("Minimum value between (1, 1) is: " + v, 50, 50);
text("Minimum value between (5, 9) is: " + w, 50, 70);
text("Minimum value between (2, 3.9) is: " + x, 50, 90);
text("Minimum value between (1.5, 3.2) is: " + y, 50, 110);
}
輸出:
參考: https://p5js.org/reference/#/p5/min
相關用法
- p5.js abs()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP pow( )用法及代碼示例
- p5.js sq()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js pow()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.map.get()用法及代碼示例
- p5.js int()用法及代碼示例
- p5.js value()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 p5.js | min() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。