Consider
Plot[{Sin[x], Cos[x]}, {x, 0, 10}]
versus
Plot[Table[Sin[x + i Pi/2], {i, 0, 1}], {x, 0, 10}]
The first command produces two plots (with different colors)
and the second produces one double-plot
My question is, how can I automatically generate a list of functions (as I attempted with the Table command) that is treated as a list of separate functions (with different colors and styles) by the Plot function?


Plot[Evaluate@Table[Sin[x + i Pi/2], {i, 0, 1}], {x, 0, 10}]– ercegovac Oct 06 '17 at 10:00