class DSP::DualSincFilter

Overview

Extended windowed sinc filter. Implements bandpass and bandstop using two sinc filters

Theoretical source: http://www.labbookpages.co.uk/audio/firWindowing.html

@author James Tunnell

Defined in:

dsp/filtering/fir/dual_sinc_filter.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(order : Int32, sample_rate : Float64, left_cutoff : Float64, right_cutoff : Float64, window_class : DSP::Windows::Window.class) #

Given a filter order, 2 cutoff frequencies, sample rate, and window class, develop a FIR filter kernel that can be used for lowpass filtering.


[View source]

Instance Method Detail

def bandpass(input) #

Process the input with the bandpass FIR. @return [Array] containing the filtered input.


[View source]
def bandpass_fir : DSP::FirFilter #

[View source]
def bandstop(input) #

Process the input with the bandstop FIR. @return [Array] containing the filtered input.


[View source]
def bandstop_fir : DSP::FirFilter #

[View source]
def left_cutoff #

[View source]
def left_filter : DSP::SincFilter #

[View source]
def order : Int32 #

[View source]
def right_cutoff #

[View source]
def right_filter : DSP::SincFilter #

[View source]
def sample_rate : Float64 #

[View source]
def window_class : DSP::Windows::Window.class #

[View source]