You are here : matlabSignal Processingkaiser

kaiser() - Signal Processing

w = kaiser(L,beta) returns an L-point Kaiser window in the column vector w. beta is the Kaiser window parameter that affects the sidelobe attenuation of the Fourier transform of the window. The default value for beta is 0.5.


Syntax

w = kaiser(L,beta)


Example

%Kaiser Window Create a 200-point Kaiser window with a beta of 2.5. Display the result using wvtool.
w = kaiser(200,2.5);
wvtool(w)


Output / Return Value


Limitations


Alternatives / See Also


Reference