Puoi aprire il codice e modificarlo
HELP
...
aX = -2; bX = 2; aY = -2; bY = 2
Dx = 0.5; Dy = 0.5
titolo = "D ( |x| ) "
...
// modifica la definizione della funzione di cui volessi tracciare il grafico (f blu, g verde, h rosso, k arancione)
// Esempi: y=2*x+5 y=x*x/3 y= Math.sqrt(x-5)*10+3 y= Math.pow(x,3) (=x^3) y= Math.sin(x/360*Math.PI)
function f(x) { y = Math.abs(x); return y }
function g(x) { y = 1/0; return y }
function h(x) { if(x>0) {y=1} else {y=-1} ; return y }
function k(x) { y = 1/0; return y }
Q1x=[0,0] ; Q1y=[1,-1]
...
// Puoi mettere fino a 10 scritte (S) in diverse posizioni (x,y) con T0=["S",x,y],...,T9=["S",x,y]
T0=["y = |x|",-1.05,1.74]
...