Skip to content
/ fft Public

Implement Fast Fourier Transform with c and python

License

Notifications You must be signed in to change notification settings

kaka-lin/fft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast Fourier Transform

A Fast Fourier transform (FFT) is an algorithm that computes the discrete Fourier transform (DFT) of a sequence, or its inverse (IDFT).

It's let the complexity of computing of the Diecrete Fourier Transform (DFT) form O(n^{2}) to O(nlogn).

Relate knowledge of Fast Fourier Transform

Usage

  1. Compile

    $ make
  2. Run

    # DFT
    $ ./dft
    
    # FFT
    $ ./fft

DFT v.s FFT

  1. spends times

  2. example

About

Implement Fast Fourier Transform with c and python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published