Do you know how to implement High, Low pass filter using FFT? Thx a lot
High , Low Pass Filter using Fast Fourier Transform
Hello, guys
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Wizzer KingPosted Mar 27, 2010, 12:10 AM
Perform FFT
For high Pass Filter Set all frequencies in the data to 0 below the cutoff frequency
For Low Pass Filter set all Frequency data in teh FFT above teh Cutoff Frequency to 0
Convert From FFT to Time Domain Data
The Time Domain Data is Now Filtered
FFTW is a C library you can wrap in C# otherwise here is a web site that I found useful
http://www.sdss.jhu.edu/~tamas/bytes/fftwcsharp.html
The FFTW site also has pointers to C# at two other places