Hello everyone
Why does the outputs of these:
t=1;
x0 = Table[i, {i, 1, 100}];
y0 = Table[Sin[(20 + i)/20 t], {i, 0, 99}];
data = N[Table[{x0[[i]], y0[[i]]}, {i, 1, 100}]]
ListPlot[data]
and this:
Module[
{t = 1},
x0 = Table[i, {i, 1, 100}];
y0 = Table[Sin[(20 + i)/20 t], {i, 0, 99}];
data = N[Table[{x0[[i]], y0[[i]]}, {i, 1, 100}]]
ListPlot[data]
]
are different?
The latter output is weird, it is a list of ListPlots, and that is not what I am looking for.