forked from ganzziani/xscopes-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fft.h
53 lines (43 loc) · 1.72 KB
/
fft.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// fft.h - declaration of class
// of fast Fourier transform - FFT
//
// The code is property of LIBROW
// You can use it on your own
// When utilizing credit LIBROW site
#ifndef _FFT_H_
#define _FFT_H_
// Include complex numbers header
#include "complex.h"
class CFFT
{
public:
// FORWARD FOURIER TRANSFORM
// Input - input data
// Output - transform result
// N - length of both input data and result
static bool Forward(const complex *const Input, complex *const Output, const unsigned int N);
// FORWARD FOURIER TRANSFORM, INPLACE VERSION
// Data - both input data and output
// N - length of input data
static bool Forward(complex *const Data, const unsigned int N);
// INVERSE FOURIER TRANSFORM
// Input - input data
// Output - transform result
// N - length of both input data and result
// Scale - if to scale result
static bool Inverse(const complex *const Input, complex *const Output, const unsigned int N, const bool Scale = true);
// INVERSE FOURIER TRANSFORM, INPLACE VERSION
// Data - both input data and output
// N - length of both input data and result
// Scale - if to scale result
static bool Inverse(complex *const Data, const unsigned int N, const bool Scale = true);
protected:
// Rearrange function and its inplace version
static void Rearrange(const complex *const Input, complex *const Output, const unsigned int N);
static void Rearrange(complex *const Data, const unsigned int N);
// FFT implementation
static void Perform(complex *const Data, const unsigned int N, const bool Inverse = false);
// Scaling of inverse FFT result
static void Scale(complex *const Data, const unsigned int N);
};
#endif