Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 297 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 297 Bytes

Fast-Fourier-Transform

  • Implemented FFT using divide and conquer approach in O(N*log(N)) Time Complexity
  • FFT Transforms the Coefficient matrix to Sample space( Points)
  • IFFT Transforms the Sample space to Coefficient Matrix

All this is implemented in O(nlogn) Hence, Multiply is O(n*logn)