gpt4 book ai didi

latex - 通过 latex 绘制离散正弦波

转载 作者:行者123 更新时间:2023-12-01 14:01:12 25 4
gpt4 key购买 nike

我正在尝试绘制正弦波:3sin(100*pi*t) 通过 latex ,其中 t 以毫秒为单位。我想绘制以 Fs = 300 samples/sec 采样的离散信号。

我试过这段代码:

\begin{figure}%Sampled sine squence
\caption{Discrete Time Signal}
\begin{tikzpicture}

\begin{axis}[%
standard,
domain = 0:15,
samples = 13,
xlabel={$n$},
ylabel={$x[n]$}]

\addplot+[ycomb,black,thick] {3*sin(100*180*x/13)};

\end{axis}
\end{tikzpicture}
\end{figure}

\end{文档}`

但我得到的结果与我预期的不同。

enter image description here

我的结果应该像这里的 plot-B 但我得到的是 plot-A。有什么建议,我应该怎么做?

最佳答案

该代码要求整个域中包含 13 个样本的 ycomb,这正是您使用 plot-A(不包括端点)获得的结果。我相信你需要

samples = 5,

达到预期的效果。

关于latex - 通过 latex 绘制离散正弦波,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28270269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com