hamming

Hamming window.

Syntax

w = hamming(n)

w = hamming(n,type)

Inputs

n
Length of the hamming window.
Type: integer
Dimension: scalar
type
Type of the window.
Type: string ('symmetric' (default) or 'periodic')

Outputs

w
Window coefficients.

Examples

Symmetric hamming example:

hamming(6,'symmetric')
w = [Matrix] 6 x 1
0.08000
0.39785
0.91215
0.91215
0.39785
0.08000
Periodic hamming example:
hamming(5,'periodic')
w = [Matrix] 5 x 1
0.08000
0.39785
0.91215
0.91215
0.39785

Comments

The window type depends on the application. If the window is used to preprocess data for an FFT then the type should be 'periodic.' If the window is used to design an FIR filter then the type should be 'symmetric.' The difference is that the periodic window omits the right endpoint so that consecutively positioned windows are not duplicating the right endpoint of the 1st window at the left endpoint of the 2nd window. The two endpoints of the symmetric window have equal values.