答案1
这是一个开始。正如 N3buchnadnezzar 所说,这是可能的,我只是没有心情添加所有这些细节。只需添加一些箭头和带圆圈的节点即可。
\documentclass[tikz,border=3mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.17}
\begin{document}
\begin{tikzpicture}[font=\sffamily]
\begin{axis}[ymax=5]
\addplot[blue,very thick,samples=301,smooth,domain=-1:2]
{(x<0 ? 0 :-4.5*cos(x*600-acos(3/4.5))*exp(-3.5*x)+3)};
\legend{Acceleration}
\end{axis}
\end{tikzpicture}
\end{document}