powered by
Return the zeros, poles and gain of an analog elliptic low-pass filter prototype.
ellipap(n, Rp, Rs)
Order of the filter.
dB of passband ripple.
dB of stopband ripple.
list of class Zpg containing zeros, poles and gain of the filter.
Zpg
This function exists for compatibility with 'Matlab' and 'OCtave' only, and is equivalent to ellip(n, Rp, Rs, 1, "low", "s").
ellip(n, Rp, Rs, 1, "low", "s")
# NOT RUN { ## 9th order elliptic low-pass analog filter zp <- ellipap(9, .1, 40) w <- seq(0, 4, length.out = 128) freqs(zp, w) # }
Run the code above in your browser using DataLab