class DSP::FirFilter

Overview

General FIR filter class. Contains the filter kernel and performs convolution.

Defined in:

dsp/filtering/fir/fir_filter.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(kernel : Array(Float64), sample_rate : Float64) #

A new instance of FIR. Filter order will by kernel size - 1. @param [Array] kernel Filter kernel values. @param [Numeric] sample_rate The sample rate the filter operates at.


[View source]

Instance Method Detail

def convolve(input) #

Convolve the given input data with the filter kernel. @param [Array] input Array of input data to by convolved with filter kernel. The array size must be greater than the filter kernel size.


[View source]
def freq_response #

[View source]
def freq_response_db #

[View source]
def kernel : Array(Float64) #

[View source]
def order : Int32 #

[View source]
def sample_rate : Float64 #

[View source]