Processing, min()
用法介紹。
用法
min(a, b)
min(a, b, c)
min(list)
參數
a
(float, int)
第一個數字b
(float, int)
第二個數字c
(float, int)
第三個數字list
(int[], float[])
要比較的數字數組
返回
float or int
說明
確定數字序列中的最小值,然後返回該值。 min()
接受兩個或三個 float
或 int
值作為參數,或任何長度的數組。
例子
int d = min(5, 9); // Sets 'd' to 5
int e = min(-4, -12); // Sets 'e' to -12
float f = min(12.3, 230.24); // Sets 'f' to 12.3
int[] values = { 5, 1, 2, -3 }; // Create an array of ints
int h = min(values); // Sets 'h' to -3
有關的
相關用法
- Processing minute()用法及代碼示例
- Processing millis()用法及代碼示例
- Processing match()用法及代碼示例
- Processing mouseY用法及代碼示例
- Processing mouseMoved()用法及代碼示例
- Processing max()用法及代碼示例
- Processing matchAll()用法及代碼示例
- Processing map()用法及代碼示例
- Processing mouseDragged()用法及代碼示例
- Processing mouseX用法及代碼示例
- Processing modelX()用法及代碼示例
- Processing month()用法及代碼示例
- Processing mouseButton用法及代碼示例
- Processing modelY()用法及代碼示例
- Processing mouseWheel()用法及代碼示例
- Processing movieEvent()用法及代碼示例
- Processing mouseClicked()用法及代碼示例
- Processing mag()用法及代碼示例
- Processing mouseReleased()用法及代碼示例
- Processing mousePressed()用法及代碼示例
- Processing mousePressed用法及代碼示例
- Processing modelZ()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 min()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。