项目作者: AlinGeorgescu

项目描述 :
Parallel Fast Fourier Transform in C
高级语言: C
项目地址: git://github.com/AlinGeorgescu/Parallel-FFT.git
创建时间: 2020-02-09T19:20:29Z
项目社区:https://github.com/AlinGeorgescu/Parallel-FFT

开源协议:MIT License

下载


Parallel-FFT

Parallel Fourier Transform and Fast Fourier Transform calculator in C

How to run:

  1. ./parallelFT inputValues.txt outputValues.txt numThreads
  2. ./parallelFFT inputValues.txt outputValues.txt numThreads

The input file format:

  1. N // number of values
  2. value1 // values are of type double
  3. value2
  4. ...
  5. valueN

The output fi le format:

  1. N // number of complex type values represented as pairs of doubles
  2. Re-value1 Img-value1 // values are of type double
  3. Re-value2 Img-value2
  4. ...
  5. Re-valueN Img-valueN