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

function F(x,I) { y =  Math.sin( (2*I+1)*x ) / (2*I+1); return y}

function f(x) { y = 0; for(I=0; I<=100; I=I+1) {y=y+F(x,I)}; return y*4/Math.PI }

aX = -5; bX = 10; aY = -1.5; bY = 1.5
Dx = 1; Dy = 1/2