Question: Inverting x axes in a Plot

Hi all,

I have this function:

restart:

I2:=g->(200*g)/sqrt(0.04+g^2);

plot(I2(g),g=0..1); 

plot(I2(g),g=1..0);

Those two plots give the same result.

Is it possible to invert the x axes to start from 1 ?

I also tried this below, but the result is as above.

x:=seq([g,I2(g)],g=1..0,-0.02);

pointplot([x],style=line);

Thanks

Please Wait...