| Signal Processing Toolbox™ | ![]() |
w = hann(L)
w = hann(L,'sflag')
w = hann(L) returns an L-point symmetric Hann window in the column vector w. L must be a positive integer. The coefficients of a Hann window are computed from the following equation.
![]()
The window length is
.
w = hann(L,'sflag') returns an L-point Hann window using the window sampling specified by 'sflag', which can be either 'periodic' or 'symmetric' (the default). The 'periodic' flag is useful for DFT/FFT purposes, such as in spectral analysis. The DFT/FFT contains an implicit periodic extension and the periodic flag enables a signal windowed with a periodic window to have perfect periodic extension. When 'periodic' is specified, hann computes a length L+1 window and returns the first L points. When using windows for filter design, the 'symmetric' flag should be used.
Note If you specify a one-point window (L=1), the value 1 is returned. |
Create a 64-point Hann window and display the result in WVTool:
L=64; wvtool(hann(L))

[1] Oppenheim, A.V., and R.W. Schafer, Discrete-Time Signal Processing, Prentice-Hall, 1989, pp. 447-448.
blackman, flattopwin, hamming, window, wintool, wvtool
![]() | hamming | hilbert | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |