>>>>> "Daniel" == Daniel Duparc <daniel.duparc@free.fr> writes:
Daniel> (C2) paramplot(cos(x),sin(x),[0.0,6.29]);
Daniel> then a file maxout.ps is generated, with a beautiful
Daniel> circle.
>From a message from William Schelter in June of this year:
For plot2d, since the argument could already be a list of functions (meaning
plot them all simultaneously on the same window), I added parametric expressions:
things like
[parametric,cos(t),sin(t),[t,-5,5]]
which would mean the unit circle.
(C1) plot2d([parametric,cos(t),sin(t),[t,-%pi*2,%pi*2]]);
(C2) plot2d([parametric,cos(t),sin(t),[t,-%pi*2,%pi*2],
[nticks,8]]);
(C3) plot2d([x^3+2,[parametric,cos(t),sin(t),[t,-5,5]]],
[x,-3,3]);
Perhaps this will work for you?
Ray