There are several types of two-dimensional plots in Maple. They provide for the plotting of the graph of a function of one variable, of a data set, of a parametrically defined curve, and of an implicitly defined curve. Here are the most frequently used two-dimensional plotting commands.
plot(f(x),x=a..b);
plot({f(x),g(x),...,h(x)},x=a..b);Notice that the functions are separated by commas and the list is enclosed in braces.
plot([f(t),g(t),t=a..b]);
plot([[x1,y1],[x2,y2],...,[xn,yn]],x=a..b);Notice that the coordinates of the n points are enclosed in square brackets and the list of points is enclosed in square brackets.
implicitplot(g(x,y) = h(x,y), x=a..b,y=c..d);Note that this command is in the package
plots
.