La función min() en p5.js se usa para obtener el valor mínimo de la secuencia de números.
Sintaxis:
min(a, b)
o
min(arr)
Parámetros: La función min(a, b) acepta dos parámetros que son dos números diferentes y se comparan para obtener el valor mínimo entre ellos. La función min(arr) acepta una array de un solo parámetro.
Valor devuelto: Devuelve el valor mínimo entre los diferentes números.
El siguiente programa ilustra la función min() en p5.js:
Ejemplo: Este ejemplo usa la función min() para obtener el valor mínimo.
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); }
Producción:
Referencia: https://p5js.org/reference/#/p5/min
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA