Skip to content

piotrrusak/fast_fourier_transform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast Fourier Transform

FT library written in C. Used mainly by ctypes in Python.

Function fft2():

Input:

Matrix (two dimentional array)

Output:

Matrix (two dimentional array)

How works?

Performs regular fft on columns, than transpose matrix, performs regular fft on columns and transpose matrix again.

How fast is it?

fft2 has complexity of O(n^2 * log2(n^2))

To Do:

Use strides in order to significantly improve efficiency.

Upgrade fft_core to make it work on other sizes than powers of two.

About

FT library written in C. Used mainly by ctypes in Python.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors