/FIRfilter

FIR filter scipy usage note

Primary LanguagePython

FIR filter

FIR(Finite Impulse Response) filter scipy usage note

lowpass

Usage

from firwin import *

batches, channels, length = 2, 3, 8192
filter = LowPass(sample_hz=40000, cutoff_hz=200)

x = np.random.normal(size=(batches, channels, length))
y = filter(x)