Puoi aprire il codice e modificarlo
HELP
...
aX = 0; bX = 5; aY = -15; bY = 15
Dx = 1/2; Dy = 5
titolo = "funzione (blu), derivata 1a (verde), derivata 2a (rosso)"
...
// modifica la definizione della funzione di cui tracciare il grafico (f blu, g verde, h rosso, k arancione)
function f(x) { y = 4*Math.sin(x*2*Math.PI/3.5); return y }
function g(x) { y = 2*Math.PI*4/3.5*Math.cos(2*Math.PI*x/3.5); return y }
function h(x) { y = -Math.pow(2*Math.PI/3.5,2)*4*Math.sin(2*Math.PI*x/3.5); return y }
...