abstract class DSP::BiquadFilter
- DSP::BiquadFilter
- Reference
- Object
Overview
Based on the "simple implementation of Biquad filters" by Tom St Denis, which is based on the work "Cookbook formulae for audio EQ biquad filter coefficients" by Robert Bristow-Johnson, [email protected] a.k.a. [email protected]. Available on the web at http://www.smartelectronix.com/musicdsp/text/filters005.txt
Direct Known Subclasses
- DSP::CookbookAllpassFilter
- DSP::CookbookBandpassFilter
- DSP::CookbookBandstopFilter
- DSP::CookbookHighpassFilter
- DSP::CookbookLowpassFilter
Defined in:
dsp/filtering/iir/biquad_filter.crConstant Summary
-
LN_2 =
Math.log(2)
-
used to calculate IIR filter coefficients
Constructors
Class Method Summary
Instance Method Summary
- #compute_coefficients(omega)
- #critical_freq : Float64
-
#magnitude_response(freq)
Calculate the magnitude response for the given frequency.
-
#magnitude_response_db(freq)
Calculate the magnitude response (in decibels) for the given frequency.
-
#process_sample(sample : Float64)
Calculate biquad output using Direct Form I:
- #process_samples(samples)
- #q : Float64
- #reset_state
- #sample_rate : Float64
Constructor Detail
Class Method Detail
Instance Method Detail
Calculate the magnitude response for the given frequency. Method for determining magnitude response is from: http://dsp.stackexchange.com/questions/16885/how-do-i-manually-plot-the-frequency-response-of-a-bandpass-butterworth-filter-i/16911#16911
Calculate the magnitude response (in decibels) for the given frequency.
Calculate biquad output using Direct Form I:
y[n] = (b0/a0)*x[n] + (b1/a0)*x[n-1] + (b2/a0)*x[n-2] - (a1/a0)*y[n-1] - (a2/a0)*y[n-2]
Note: coefficients are already divided by a0 when they are calculated. So that step is left out during processing.