La función log() en p5.js se usa para obtener el logaritmo natural (de base «e») de cualquier número tomado como entrada para el parámetro de la función log().
Sintaxis:
log(x)
Parámetros: Esta función acepta un único parámetro x que es cualquier número mayor que cero (0) tomado como entrada cuyo logaritmo natural se va a calcular.
Valor devuelto: Devuelve el logaritmo natural de cualquier número de entrada mayor que cero (0).
El siguiente programa ilustra la función log() en p5.js:
Ejemplo: este ejemplo utiliza la función log() para obtener el valor logarítmico natural de cualquier número de entrada.
Javascript
function setup() { // Create Canvas of size 270*80 createCanvas(550, 130); } function draw() { // Set the background color background(220); // Initialize the parameter let a = 5; let b = 7.7; let c = 0; let d = -5; // Call to log() function let v = log(a); let w = log(b); let x = log(c); let y = log(d); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting natural log value text("Natural logarithm value of 5 is : " + v, 50, 30); text("Natural logarithm value of 7.7 is : " + w, 50, 50); text("Natural logarithm value of 0 is : " + x, 50, 70); text("Natural logarithm value of -5 is : " + y, 50, 90); }
Producción:
Nota: Si tomamos la entrada como un valor negativo y cero, devuelve la salida como «NaN» e -Infinito respectivamente.
Referencia: https://p5js.org/reference/#/p5/log
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