La función asin() en p5.js se usa para calcular el inverso del seno (arco seno). Si el rango de valores de entrada es -1 a 1, devuelve el rango entre -π/2 a π/2.
Sintaxis:
asin(value)
Parámetros: esta función acepta un único valor de parámetro que almacena el dominio de la función asin().
Valor de retorno: Devuelve el arco seno del valor dado.
El siguiente programa ilustra la función asin() en p5.js:
Ejemplo: Este ejemplo usa la función asin() para obtener el arco seno de un valor.
function setup() { // Create Canvas of given size createCanvas(550, 130); } function draw() { // Set the background color background(220); // Initialize the parameter // with some values let a = 0; let b = 1; let c = -1; let d = 0.5; let e = 5; // Call to asin() function let v = asin(a); let w = asin(b); let x = asin(c); let y = asin(d); let z = asin(e); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Getting arc sine value text("Arc sine value of 0 is : " + v, 50, 30); text("Arc sine value of 1 is : " + w, 50, 50); text("Arc sine value of -1 is : " + x, 50, 70); text("Arc sine value of 0.5 is : " + y, 50, 90); text("Arc sine value of 5 is : " + z, 50, 110); }
Producción:
Nota: si el valor es mayor que 1 o menor que -1, devuelve NaN.
Referencia: https://p5js.org/reference/#/p5/asin
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