La función max() en p5.js se usa para obtener el valor máximo entre una secuencia de números o dos números dados. La función max() acepta cualquier número de parámetros o una array.
Sintaxis:
max(a, b)
o
max(arr)
Parámetros: La función max(a, b) acepta dos parámetros que tienen un número diferente y se comparan para obtener el valor máximo entre ellos. La función max(arr) acepta una array de números y devuelve el valor máximo.
Valor devuelto: Devuelve el valor máximo entre los números.
El siguiente programa ilustra la función max() en p5.js:
Ejemplo: Este ejemplo usa la función max() para obtener el valor máximo.
javascript
function setup() { // Create Canvas of given size createCanvas(450, 230); } function draw() { // Set the background color background(220); // Call to max() function let u = max(1, 3); let v = max(1, 1); let w = max(5, 9); let x = max(2, 3.9); let y = max(1.5, 3.2); let arr = [1, 5, 3, 8, 6, 9]; let z = max(arr); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting maximum value text("Maximum value between (1, 3) is: " + u, 50, 30); text("Maximum value between (1, 1) is: " + v, 50, 50); text("Maximum value between (5, 9) is: " + w, 50, 70); text("Maximum value between (2, 3.9) is: " + x, 50, 90); text("Maximum value between (1.5, 3.2) is: " + y, 50, 110); text("Maximum value in an array is: " + z, 50, 130); }
Producción:
Referencia: https://p5js.org/reference/#/p5/max
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