我想制作一个水平平移的正弦图,但不知道什么属性允许我这样做。TikZ 手册第 116.2.1 章中有一个属性列表,但我无法让其中任何一个起作用。
在 addplot 命令中将随时间变化的数字作为常数或系数进行呈现的通用方法将非常有帮助,谢谢。
梅威瑟:
\documentclass[dvisvgm]{standalone}
\usepackage{tikz}
\usetikzlibrary{animations}
\usepackage{pgfplots}
\usepgfmodule{animations}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}[]
\begin{axis}[]
\pgfanimateattribute{}{
whom = addplot, entry = {0s}{1}, entry = {2s}{3} }
\addplot[]{sin(deg(x))};
\end{axis}
\end{tikzpicture}
\end{document}