matlab-enhanced Swiki= [View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide]

Maple Hints

This maple code makes the plots a bit thicker:

with(plots):
setoptions(thickness=3);

Green is hard to see, so to set all plots to red:

with(plots):
setoptions(thickness=3,color=red);

or to configure individual plot colors, e.g.:

plot([ f(x), g(x) ], x=a..b, color=[navy,gold]);

To see the list of pre-defined colors in maple:

?plot[color]