I need to plot all of the curves generated using a Maple for loop. As an example, consider the simple loop:
For j from 1 by 1 to 10
do
plot({[f(x,j),g(x,j), x=x_min..x_max]}, options)
end do;
I need to plot all of the curves so generated under one set of axes. What I have here seems to plot only one curve, corresponding to the value j=10.