From 12abfa14f5a3b328ddb78620486b40d46fe213ec Mon Sep 17 00:00:00 2001 From: Arturs Artamonovs Date: Thu, 26 Aug 2021 08:09:19 +0100 Subject: Reaarange source --- NaiveFFT/fft.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 NaiveFFT/fft.h (limited to 'NaiveFFT/fft.h') diff --git a/NaiveFFT/fft.h b/NaiveFFT/fft.h new file mode 100644 index 0000000..f1ee783 --- /dev/null +++ b/NaiveFFT/fft.h @@ -0,0 +1,20 @@ +// +// fft.h +// NaiveFFT +// +// Created by Jacky Jack on 26/08/2021. +// + +#ifndef fft_h +#define fft_h + +#include +#include +#include + +void fft_if(double *x_i, double *x_q, int n, int inv); +void ffti_shuffle_1(double *x_i, double *x_q, uint64_t n); +void fft_1(double *x_i, double *x_q, uint64_t n, uint64_t inv); +void dft(double *x_i, double *x_q, int n, int inv); + +#endif /* fft_h */ -- cgit v1.2.3