Plot graph with custom axes

505 Views Asked by At

How to plot graph with custom axes in Mathematica 8.0?

e.g. use the axes $\frac1y$ instead of $y$ and $x^2$ instead of $x$?

this is to implement Linear Law

2

There are 2 best solutions below

0
On

Instead of plotting $f(x)$ just plot $f(x^2)$ or $1/f(x)$ and change the labeling of the axes :-)

1
On
(f[x_]) := 2 x^2 + 3;
ParametricPlot[{x^2, f[x]}, {x, 0, 3.5}]