I'm trying to add arrow to a simple parametric plot I'm doing:
F=1.85;
c=1.85;
G=0.01;
sol = NDSolve[{x'[t]==v[t], v'[t]==-v[t]+c Tanh[v[t]/F]-G Sign[x[t]],x[0]==0,v[0]==0.01},{x,v},{t,0,10}];
ParametricPlot[Evaluate[{x[t], v[t]} /. sol], {t, 0, 10}]
I've added the arrows. There is some similar question here in the forum, Adding arrows in curves however it is not with parametric plot, and works with ListPlot, I'm new in mathematica and don't find my way with this yet, any help or guidance would be much appreciated.



v'[t]+c Tanh[v[t]/F]-G Sign[x[t]]is not an equation because it doesn't have a==. – Sjoerd C. de Vries Nov 11 '15 at 08:32/. Line[x_] :> {Arrowheads[Table[.05, {5}]], Arrow[x]}after the ParametricPlot (as in the accepted answer in the question you linked to). I've checked it, and it works here too. – Sjoerd C. de Vries Nov 11 '15 at 08:44