Main Content

hann

Hann (Hanning) window

Description

example

w = hann(L) returns an L-point symmetric Hann window.

w = hann(L,sflag) returns a Hann window using the window sampling specified by sflag.

Examples

collapse all

Create a 64-point Hann window. Display the result using wvtool.

L = 64;
wvtool(hann(L))

Figure Window Visualization Tool contains 2 axes objects and other objects of type uimenu, uitoolbar, uipanel. Axes object 1 with title Time domain, xlabel Samples, ylabel Amplitude contains an object of type line. Axes object 2 with title Frequency domain, xlabel Normalized Frequency (\times\pi rad/sample), ylabel Magnitude (dB) contains an object of type line.

Input Arguments

collapse all

Window length, specified as a positive integer.

Data Types: single | double

Window sampling, specified as one of the following:

  • 'symmetric' — Use this option when using windows for filter design.

  • 'periodic' — This option is useful for spectral analysis because it enables a windowed signal to have the perfect periodic extension implicit in the discrete Fourier transform. When 'periodic' is specified, hann computes a window of length L + 1 and returns the first L points.

Output Arguments

collapse all

Hann window, returned as a column vector.

Algorithms

The following equation generates the coefficients of a Hann window:

w(n)=0.5(1cos(2πnN)),0nN.

The window length L = N + 1.

References

[1] Oppenheim, Alan V., Ronald W. Schafer, and John R. Buck. Discrete-Time Signal Processing. Upper Saddle River, NJ: Prentice Hall, 1999.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Version History

Introduced before R2006a