| Author |
Comment/Response |
Matt
|
04/25/10 10:07pm
hi,
I'm trying to plot a number of curves on the same set of axis. I know this can be done with the show command i.e. Show[plot1, plot2], but how do I plot a variable amount of plots on the same axes?
For example:
n=100;
Do[plot[i] =
ContourPlot[x^2 + y^2 == i, {x, -i, i}, {y, -i, i}];, {i, 1, n}];
(This works until this point)
Show[Do[plot[i],{i,1,n}], PlotRange->All]
How can I get this to work?
Thanks,
Matt
URL: , |
|