Using the same example code as in this question, is it possible to show all 10 plots (ie, each step of the manipulation) simultaneously?
If a manipulate function is a series of listplots based on a single variable, is it possible to show all list plots simultaneously (ie - to overlay all listplots as one static plot).
The only way I can think of doing this is copying & pasting the code n number of times, changing the variable for each one, naming each listplot & using
Show [a,b,c,d...]
but this seems fairly labour intensive!
ListPlot[{list1, list2, ...}]plots several lists of points." Is that what you want? – Nov 10 '13 at 12:16ListPlotis for data andPlotis for functions, and you speak consistently of "listplot." The answer below seems on target, so I must not be getting what it is that you're after. Could you clarify further? Also, when possible it is better for questions to be self-contained. You could put example code into this question without making it much longer. – Michael E2 Nov 10 '13 at 13:59