WLJS LogoWLJS Notebook

HammingWindow

HammingWindow[x] represents a Hamming window function of x.

The Hamming window is commonly used in signal processing and spectral analysis to reduce spectral leakage.

Examples

HammingWindow[0.5]
Plot[HammingWindow[x], {x, -1/2, 1/2}]
(* Apply to a signal *)
ListLinePlot[Table[HammingWindow[x], {x, -0.5, 0.5, 0.01}]]

*See the official Wolfram Language Reference for more details.

On this page