diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-10-06 19:47:19 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-10-06 19:47:19 +0200 |
commit | 8736f6160aeafe7a177cb6143fea80157e174e52 (patch) | |
tree | c73d39eda0db5341875b0fac34cdc89c0961c94a /src/Buffer.h | |
parent | b563b465e8b3df367da7799e789d29e0009cb96a (diff) | |
download | dabmod-8736f6160aeafe7a177cb6143fea80157e174e52.tar.gz dabmod-8736f6160aeafe7a177cb6143fea80157e174e52.tar.bz2 dabmod-8736f6160aeafe7a177cb6143fea80157e174e52.zip |
Implement fixed-point symbols, FFT and file output
Diffstat (limited to 'src/Buffer.h')
-rw-r--r-- | src/Buffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Buffer.h b/src/Buffer.h index 077d654..711b804 100644 --- a/src/Buffer.h +++ b/src/Buffer.h @@ -34,7 +34,10 @@ #include <vector> #include <memory> #include <complex> +#include "fpm/fixed.hpp" + typedef std::complex<float> complexf; +typedef std::complex<fpm::fixed_16_16> complexfix; /* Buffer is a container for a byte array, which is memory-aligned * to 32 bytes for SSE performance. |