Why does this not give me any plots? It should give five plots.
Do[Plot[x^n, {x, 1, 2}], {n, -2, 2}]
If I remove the Plot from the Do, it works, but I want a series of plots. This is just an example, I'm trying to do something more complicated, but this illustrates the problem.
How can I create a series of plots?
Tableinstead ofDo– funnyp0ny Dec 09 '14 at 21:54Do[Print@Plot[x^n, {x, 1, 2}], {n, -2, 2}]– Dr. belisarius Dec 09 '14 at 21:57