abstract class DSP::BiquadFilter

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

Defined in:

dsp/filtering/iir/biquad_filter.cr

Constant Summary

LN_2 = Math.log(2)

used to calculate IIR filter coefficients

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new(critical_freq : Float64, q : Float64, sample_rate : Float64) #

[View source]

Class Method Detail

def self.omega(freq, sample_rate) #

[View source]

Instance Method Detail

abstract def compute_coefficients(omega) #

[View source]
def critical_freq : Float64 #

[View source]
def magnitude_response(freq) #

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


[View source]
def magnitude_response_db(freq) #

Calculate the magnitude response (in decibels) for the given frequency.


[View source]
def process_sample(sample : Float64) #

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.


[View source]
def process_samples(samples) #

[View source]
def q : Float64 #

[View source]
def reset_state #

[View source]
def sample_rate : Float64 #

[View source]