-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdft.h
25 lines (21 loc) · 775 Bytes
/
dft.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
/* NOTE: 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, or (at your option) 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.
*
* Bugs can be reported to Yu Zhang <[email protected]>.
*
* File Name : dft.h
* Last Modified : Thu 11 Oct 2012 04:55:07 PM EDT
*/
#ifndef DFT_H
#define DFT_H
int setup_dft(char* file_name);
int update_dft(int time_index);
int write_dft(char* file_name);
#endif