You are here : matlabSignal Processingblackmanharris

blackmanharris() - Signal Processing

w = blackmanharris(N) returns
an N-point symmetric 4-term Blackman-Harris window
in the column vector w. The window is minimum
in the sense that its maximum sidelobes are minimized. w = blackmanharris(N,SFLAG) uses SFLAG window
sampling. SFLAG can be 'symmetric' or 'periodic'.
The default is 'symmetric'. You can find the equations
defining the symmetric and periodic windows in Definitions.


Syntax

w = blackmanharris(N)w = blackmanharris(N,SFLAG)


Example

Blackman-Harris WindowOpen This Example
Create a 32-point symmetric Blackman-Harris window. Display the result using wvtool.
N = 32;
wvtool(blackmanharris(N))


Output / Return Value


Limitations


Alternatives / See Also


Reference