For a parametric plot of a particle's position (x(t),y(t)), is it possible to usepgfplots to draw arrows equally spaced in time to indicate the direction of travel?
For example, with (x(t),y(t)) = (t,t^2), I know how to produce arrows equally spaced in length:
\documentclass{article}
\usepackage{pgfplots}
\usetikzlibrary{decorations.markings}
\pgfplotsset{compat=1.8}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis lines = middle,smooth,xlabel = $x$, ylabel =$y$, minor tick num =1, grid=both, unit vector ratio*=1 1,enlargelimits = true]
\addplot[thick, variable=\t, domain=0:2, decoration={
markings,
mark=between positions 0.2 and 0.99 step 2em with {\arrow [scale=1.5]{stealth}}
}, postaction=decorate] ({t^2}, {t^4});
\end{axis}
\end{tikzpicture}
\end{document}
yielding

But can I get constant spacing in time, similar to:


