class DSP::SincFilter

Overview

Windowed sinc filter. Implements lowpass and highpass. A bandpass and bandstop filter would be implemented using two of these.

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

@author James Tunnell

Defined in:

dsp/filtering/fir/sinc_filter.cr

Constructors

Instance Method Summary

Constructor Detail

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

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


[View source]

Instance Method Detail

def cutoff : Float64 #

[View source]
def highpass(input) #

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


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

[View source]
def lowpass(input) #

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


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

[View source]
def order : Int32 #

[View source]
def sample_rate : Float64 #

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

[View source]