Puoi aprire il codice e modificare la funzione: vedi l'Help
You can open the Code and modify the function: see the Help
HELP

y = 3√x = sign(x)*abs(x)^(1/3)
["A^B", "Math.pow(A,B)", ... non calcola la potenza se A<0 e B non è intero / does not calculate the power when A<0 and B is not integer]
function f(x) { y = Math.sign(x)*Math.pow(Math.abs(x),1/3); return y }

aX = -5; bX = 5; aY = -2; bY = 2
Dx = 1; Dy = 0.5