scipy 1.8.0 Pypi GitHub Homepage
Other Docs
ParametersReturnsBackRef
kaiser_beta(a)

Parameters

a : float

The desired attenuation in the stopband and maximum ripple in the passband, in dB. This should be a positive number.

Returns

beta : float

The beta parameter to be used in the formula for a Kaiser window.

Compute the Kaiser parameter beta , given the attenuation a.

Examples

Suppose we want to design a lowpass filter, with 65 dB attenuation in the stop band. The Kaiser window parameter to be used in the window method is computed by :None:None:`kaiser_beta(65)`:

>>> from scipy.signal import kaiser_beta
... kaiser_beta(65) 6.20426
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

scipy.signal._fir_filter_design.kaiserord scipy.signal._fir_filter_design.kaiser_beta scipy.signal._fir_filter_design.kaiser_atten

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/signal/_fir_filter_design.py#48
type: <class 'function'>
Commit: