You are here : matlabSignal Processingparzenwin

parzenwin() - Signal Processing

w = parzenwin(L) returns
the L-point Parzen (de la Vallée Poussin)
window in a column vector, w. Parzen windows are
piecewise-cubic approximations of Gaussian windows. Parzen window
sidelobes fall off as 1/ω4.
See Definitions for the equation
that defines the Parzen window.


Syntax

w = parzenwin(L)


Example

Parzen and Gaussian WindowsOpen This Example
Compare 64-point Parzen and Gaussian windows. Display the result using wvtool.
gw = gausswin(64);
pw = parzenwin(64);
wvtool(gw,pw)


Output / Return Value


Limitations


Alternatives / See Also


Reference