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 (f), F': red (h) - You can change f

function f(x) { if(x < 1) {y = x*x} else {y = 1/x}; return y }
function h(x) { dx=(bX-aX)/1e5; y = (f(x+dx)-f(x-dx))/(dx*2); return y }

aX = -3; bX = 3; aY = -2.5; bY = 2.5
Dx = 1/2; Dy = 1/2