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

BLUE:  y=log(|x|),   RED:  y = Dx log(|x|)

function f(x) { y = Math.log(Math.abs(x)); return y }

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