Puoi aprire il codice e modificare la funzione: vedi l'Help
You can open the Code and modify the function: see the Help
HELP

In f-g ho messo A-D. Per non aggiungere una funzione a quelle già presenti nello script, ho descritto il grafico di E come una curva in forma parametrica: x=t; y=E(t).

K=2
function f(x) { y =  Math.pow(x,1/K); return y }
function g(x) { y = Math.pow(x,-K); return y }
function h(x) { y = x+K; return y }
function k(x) { y = 1-x; return y }

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

C1="black"

function XX1(t) {x=t; if(Ix(x)<1){x=1/0}; return x};
function YY1(t) {y=K/t; if(Iy(y)<1){y=1/0}; return y}; t1=0; t2=4
for(j=0;j<=5e3;j=j+1) {t=t1+(t2-t1)/5e3*(j-1);L1x[j]=XX1(t);L1y[j]=YY1(t)}

AX=BX=AY=BY=""
AAX=aX; BBX=bX; AAY=aY; BBY=bY

T0=["C",2.7,-2.5]; T1=["E",0.2,5.5]; T2=["B",2.7,5.5]; T3=["D",0.55,6.5]; T4=["A",3.5,2.35]