Return the poles and gain of a Bessel analog low-pass filter prototype.
besselap(n)
Arguments
n: order of the filter; must be < 25.
Returns
List of class Zpg containing poles and gain of the filter
Details
The transfer function is
besselap normalizes the poles and gain so that at low frequency and high frequency the Bessel prototype is asymptotically equivalent to the Butterworth prototype of the same order. The magnitude of the filter is less than 1/2 at the unity cutoff frequency Ωc=1.
Analog Bessel filters are characterized by a group delay that is maximally flat at zero frequency and almost constant throughout the passband. The group delay at zero frequency is
Examples
## 6th order Bessel low-pass analog filterzp <- besselap(6)w <- seq(0,4, length.out =128)freqs(zp, w)