在 LaTeX 中绘制窗口函数的最简单方法是什么?

在 LaTeX 中绘制窗口函数的最简单方法是什么?

最简单的绘制方法是什么窗口函数(例如 hann、hamming 等)在 LaTeX 中?使用 TikZ-pgf 吗?

答案1

该函数取自维基百科,调整为度数,N=100,并绘制为pgfplots

在此处输入图片描述

\documentclass{amsart}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5}


\begin{document}

\begin{tikzpicture}



\begin{axis}[
]
\addplot[samples=300,domain=0:99] {
0.5*(1 - cos((360*x)/(99)))};


\end{axis}




\end{tikzpicture}

\end{document}

相关内容