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 ----

function f(x) { y = Math.log(7-2*x); return y }
function g(x) { y = Math.log(2*x-5); return y }

aX = 0; bX = 6; aY = -2; bY = 2
Dx = 1/2; Dy = 1/2

i=0
for(j=0;j<5e4;j=j+1) {xp=Math.random()*(bX-aX)+aX; yp=Math.random()*(bY-aY)+aY
                  if( yp < g(xp) && yp > f(xp)) {QQ1x[i]=xp; QQ1y[i]=yp; i=i+1} }