|
From: Hans-Bernhard B. <HBB...@t-...> - 2010-05-18 00:07:31
|
James00007 wrote: > I am doing some other plotting the in the same script/plot but those > functions are *not* > in parametric mode whereas this particular plot requires parametric mode. > > Is there a way to plot both kinds of functions in the same plot? Of course. Any function f(x) is representable as a parametric curve (t, f(t)), or in case you need the x range to be different from the t range: (my_x(t), f(my_x(t))) Lesson to be learned: functions don't care about the name of their arguments. It doesn't _have_ to be 'x'. |