An open API service indexing awesome lists of open source software.

https://github.com/r-gg/fork_fft

Implementation of the Cooley-Tukey Fast Fourier Transform algorithm.
https://github.com/r-gg/fork_fft

fourier-transform linux-pipes operating-systems process-forking

Last synced: about 2 months ago
JSON representation

Implementation of the Cooley-Tukey Fast Fourier Transform algorithm.

Awesome Lists containing this project

README

          

# Cooley-Tukey Fast Fourier Transform

The program computes the Fourier Transform of its input values recursively through the use of **forks** and **pipes**.

The input of the program are floating point values, which should be read from stdin. Subsequent values are separated by a newline character. The sequence ends when an EOF (End Of File) is encountered.

## Usage

```
./forkFFT
```

## Examples
![image](https://github.com/r-gg/fork_FFT/assets/90387385/5885d418-45ef-475e-a32e-718572ec46e5)