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.pow(Math.abs(x-1),3); return y }
function g(x) { if(x<=1) {y = 3*(x-1)*(x-1)} else {y = -3*(x-1)*(x-1)}; return y }  // D(f)
function h(x) {if(x<=1) {y = 6*(x-1)} else {y = -6*(x-1)}; return y }               // D(g)

aX = -1; bX = 3; aY = -7; bY = 2
Dx = 1; Dy = 1