This commit is contained in:
michalcourson
2025-10-04 10:09:14 -04:00
commit 720a013ff3
93 changed files with 36220 additions and 0 deletions

9
Source/mayer_fft.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef MAYER_H
#define MAYER_H
#define REAL float
void mayer_realfft(int n, REAL* real);
void mayer_realifft(int n, REAL* real);
#endif