powered by
Return the poles and gain of an analog Chebyshev Type II lowpass filter prototype.
cheb2ap(n, Rs)
Order of the filter.
dB of stop-band ripple.
list of class Zpg containing poles and gain of the filter
Zpg
This function exists for compatibility with 'Matlab' and 'Octave'only, and is equivalent to cheby2(n, Rp, 1, "low", "s").
cheby2(n, Rp, 1, "low", "s")
# NOT RUN { ## 9th order Chebyshev type II low-pass analog filter zp <- cheb2ap(9, 30) w <- seq(0, 4, length.out = 128) freqs(zp, w) # }
Run the code above in your browser using DataLab