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) { y = Math.sin(x); return y }
function g(x) { y = Math.sin(Math.sqrt(2)*x); return y }
function h(x) { y = f(x)+g(x); return y }

aX = -6*Math.PI; bX = 6*Math.PI; aY = -2.5; bY = 2.5
Dx = Math.PI/2; Dy = 0.5

xx=[-Math.PI*2,-Math.PI*4,Math.PI*2,Math.PI*4]; yy=[-1,1]