-
Notifications
You must be signed in to change notification settings - Fork 0
/
dft_calc.h
45 lines (37 loc) · 1.28 KB
/
dft_calc.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
/*
* terminalDFT. DFT terminal computation and plotting
*
* Copyright (C) 2021 Alfredo Gonzalez Calvin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef DFT_CALC_H_
#define DFT_CALC_H_
#include <complex.h> /* cabs() cexp() */
#include <stdlib.h> /* malloc, free */
#include <stdio.h> /* fprintf */
#define FFT_SIZE 1024
#define PI 3.14159
/*
* Complex vector and complex matrix used
* to compute the DFT using the base 2
* decimation algorithm (RADIX 4)
*/
extern double complex W_N2[FFT_SIZE/4];
extern double complex W_N4[FFT_SIZE/4][FFT_SIZE/4];
/* Initializes W_N2 and W_N4 */
void init_W();
/* Returns DFT in Y */
void dft(int *x_signal, double *Y);
#endif /* DFT_CALC_H_ */