This is documentation for an old release of SciPy (version 0.11.0). Read this page in the documentation of the latest stable release (version 1.14.1).
Design a Kaiser window to limit ripple and width of transition region.
Parameters : | ripple : float
width : float
|
---|---|
Returns : | numtaps : int
beta : :
|
See also
Notes
There are several ways to obtain the Kaiser window:
signal.kaiser(numtaps, beta, sym=0) signal.get_window(beta, numtaps) signal.get_window((‘kaiser’, beta), numtaps)
The empirical equations discovered by Kaiser are used.
References
Oppenheim, Schafer, “Discrete-Time Signal Processing”, p.475-476.