I asked a question some time ago about a trajectory graph of a vector field in Mathematica, my question is: Is it possible to generate this graph directly in LaTeX?
I am using this parametric solution provided by Wolfram,
I will put the initial data (3,pi/2) doing the calculations I got that c_1=-1/64 and c_2=0.90778 now I tried to graph this parametric solution but no i get nothing.
Input
\documentclass{standalone}
\usepackage{tkz-fct}
\begin{document}
\begin{tikzpicture}[scale=1]
\tkzInit[xmin=-3,xmax=3,xstep=1,ymin=-3,ymax=3,ystep=1]
\tkzAxeX[step=1]
\tkzAxeY[step=1]
\tkzFctPar[samples=400,domain=0:2000]{(1/2)(2+sqrt(4+(2(-2t+sqrt(t+0.015625)+2))/(t+0.015625)))cos(0.9078+(2/3)cos((3(t+0.015625)^(1/4))/sqrt(2)))}{(1/2)(2+sqrt(4+(2(-2t+sqrt(t+0.015625)+2))/(t+0.015625)))sin(0.9078+(2/3)cos((3(t+0.015625)^(1/4))/sqrt(2)))}
\end{tikzpicture}
\end{document}
With this initial point, I was looking for the blue trajectory to come out.



\listplotThreeD[...]{XYZa}– Zaragosa Jan 28 '23 at 13:43