In gnuplot I can create a parametric plot of two curves thus:
plot [t=0:4] t,f(t),t,g(t)
This will plot the curves with t
between 0 and 4.
But what if I want to use different trange
values for the two curves?
Is that possible?
In gnuplot I can create a parametric plot of two curves thus:
plot [t=0:4] t,f(t),t,g(t)
This will plot the curves with t
between 0 and 4.
But what if I want to use different trange
values for the two curves?
Is that possible?