CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Jun 2001
    Location
    UK, Surrey
    Posts
    1

    Bandpass filter usng FFT

    I need to apply a bandpass filter to a set of data.
    Does anybody have a suitable algorithm

    David


  2. #2
    Join Date
    Aug 2000
    Location
    West Virginia
    Posts
    7,721

    Re: Bandpass filter usng FFT

    Maybe this will give you some ideas :

    http://www.smartelectronix.com/musicdsp/filters.php


  3. #3

    Re: Bandpass filter usng FFT

    Hmm,

    implementing a FIR-filter is not difficult. Use this to calculate your data.

    y(n) = sigma( a(n)*x(n-k) ) ; n = 0...m where m is the number of coef-1

    ( How can I get a math-symbol like sigma into a thread ??? )

    If you want a reday-to-use-lib go and get the free (!) Signal-Processing-Lib from Intel.

    So far ... Mario///


    ------------------------
    Mario www.klangwerker.de
    ------------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured