箭头和圆一起画。
\documentclass[tikz,border=2pt]{standalone}
\usetikzlibrary {arrows.meta}
\usetikzlibrary{decorations.markings}
\usepackage{xfp}
\tikzset{paint/.style={ draw=#1!50!black, fill=#1!80 },
gray arrow/.style={>={Stealth[gray,inset=0pt, length=4pt, angle'=20]}},
}
\begin{document}
\begin{tikzpicture}
\draw [blue,line width=1pt]
plot [domain=-0.5:4.5, samples=60] (\x,\fpeval{1/(1+0.0075*10^{\x})});
\path [decorate, decoration={markings,
mark=between positions 0 and 1 step 1/30 with{
\draw[->, gray arrow] (0,0)--(0,10pt);
\draw[paint=yellow, line width=.5pt](0,0) circle (.5mm);
}
}] {plot [domain=0:4.25, samples=60] (\x,\fpeval{1/(1+0.0075*10^{\x})})};
\end{tikzpicture}
\end{document} 







问 一条曲线上排列着圆点组与箭头组,目前有错位,每个箭头起点位置如何对准圆?