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

// f blue, g green, h red
function f(x) { if(x==0) {y=0} else {y = Math.sin(1/x)*x*x}; return y }
function g(x) { y = x*x; return y }
function h(x) { y = -x*x; return y }

aX = -1/10; bX = 1/10; aY = -0.01; bY = 0.01
Dx = 0.01; Dy = 0.001