f:=(33102 x - 103993)*(113 x - 355)*(x - Pi);
plot(f,x=3.141585..3.1416,numpoints=200);
But the plot was quite jagged. How can I get maple
to produce a smooth one?
--Jim Buddenhagen
f:=(33102*x - 103993)*(113*x - 355)*(x - Pi);
plot(f,x=3.141585..3.1416,numpoints=200);
Probably most any function would do. This just
happened to be the one I was looking at when I
encountered the zig-zag graph.
--Jim Buddenhagen
> But the plot was quite jagged. How can I get maple
> to produce a smooth one?
Looks fine to me, using Maple V release 4.
Colin Percival
Interesting. To me, using Maple 7.0 it looks like (link to 5K file):
http://lonestar.texas.net/~jbuddenh/temp/sample_plot.gif
--Jim Buddenhagen
(My apologies if this appears twice. Outlook express is doing some
strange stuff.)
It is a display driver problem. Use
> plotsetup(gdi);
before plotting.
Best wishes,
Alec Mihailovs
http://webpages.shepherd.edu/amihailo/
Thanks. That fixed it! Now I get a very nice plot even
with a tighter interval for x. A 7K picture is here:
http://lonestar.texas.net/~jbuddenh/temp/sample_plot2.gif
--Jim Buddenhagen