You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
414 B
15 lines
414 B
8 years ago
|
#ifndef FFT_WINDOWS_H
|
||
|
#define FFT_WINDOWS_H
|
||
|
|
||
|
extern const float win_hamming_16[];
|
||
|
extern const float win_hamming_32[];
|
||
|
extern const float win_hamming_64[];
|
||
|
extern const float win_hamming_128[];
|
||
|
extern const float win_hamming_256[];
|
||
|
extern const float win_hamming_512[];
|
||
|
extern const float win_hamming_1024[];
|
||
|
extern const float win_hamming_2048[];
|
||
|
//extern const float win_hamming_4096[];
|
||
|
|
||
|
#endif // FFT_WINDOWS_H
|