I cannot figure out how to plot a vector field with only 1 variable. Maybe Mathematica doesn’t support this. For example:
r(t) = cost j + sint i
same as
<cost, sint>
This doesn’t work:
VectorPlot[{cos t, sin t}, {t, 0, 2 Pi}]
As a bonus how to take the derivative of a vector?
An easy workaround would be to use a 2D-
VectorPlotwith a dummy variable like this:Or what probably makes more sense is to discretize the curve that you get when you follow the vector while increasing
t. This is e.g. useful for Feynman-style Action-integrals in quantum mechanics.