scipy 1.8.0 Pypi GitHub Homepage
Other Docs
NotesParametersReturnsBackRef
besselap(N, norm='phase')

Notes

To find the pole locations, approximate starting points are generated for the zeros of the ordinary Bessel polynomial , then the Aberth-Ehrlich method is used on the Kv(x) Bessel function to calculate more accurate zeros, and these locations are then inverted about the unit circle.

Parameters

N : int

The order of the filter.

norm : {'phase', 'delay', 'mag'}, optional

Frequency normalization:

phase

The filter is normalized such that the phase response reaches its midpoint at an angular (e.g., rad/s) cutoff frequency of 1. This happens for both low-pass and high-pass filters, so this is the "phase-matched" case.

The magnitude response asymptotes are the same as a Butterworth filter of the same order with a cutoff of :None:None:`Wn`.

This is the default, and matches MATLAB's implementation.

delay

The filter is normalized such that the group delay in the passband is 1 (e.g., 1 second). This is the "natural" type obtained by solving Bessel polynomials

mag

The filter is normalized such that the gain magnitude is -3 dB at angular frequency 1. This is called "frequency normalization" by Bond.

versionadded

Returns

z : ndarray

Zeros of the transfer function. Is always an empty array.

p : ndarray

Poles of the transfer function.

k : scalar

Gain of the transfer function. For phase-normalized, this is always 1.

Return (z,p,k) for analog prototype of an Nth-order Bessel filter.

See Also

bessel

Filter design function using this prototype

Examples

See :

Back References

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

scipy.signal._filter_design.bessel

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/_filter_design.py#4761
type: <class 'function'>
Commit: