I want to plot a time dependant vector field, and see variation with time,
Like this :
U = 0.5 + 0.8 x;
V = 1.5 + 2.5 Sin[2 Pi t] - 0.8 y;
But when I do:
Manipulate[VectorPlot[{U, V}, {x, -5, 5}, {y, 0, 5}], {t, 0, 1}]
or
Animate[VectorPlot[{U, V}, {x, 0, 5}, {y, -1, 5}], {t, 0, 10}]
it shows blank space, nothing is visible. And VectorPlot3D is confusing, I mean it shows all variations on top of other but I wanted to see it as in Manipulate.
because Manipulate and Animate returned blank box.
Its not answered in How are parameters evaluated for a Plot in Manipulate
Pls Help