diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-14 09:49:23 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-14 09:49:23 -0300 |
commit | f6ac805ba459601765673b8346e9fd727c7a0f67 (patch) | |
tree | b495751e0ebe41ae38fa66957d5eb4265b4860a6 /log-fourier.hpp | |
parent | beb673286699d46eaa43bcaa5b03e4bc65bd0201 (diff) | |
download | code-f6ac805ba459601765673b8346e9fd727c7a0f67.tar.gz code-f6ac805ba459601765673b8346e9fd727c7a0f67.tar.bz2 code-f6ac805ba459601765673b8346e9fd727c7a0f67.zip |
Pre-compute some exponentials and Γ function
Diffstat (limited to 'log-fourier.hpp')
-rw-r--r-- | log-fourier.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/log-fourier.hpp b/log-fourier.hpp index ee85775..730639c 100644 --- a/log-fourier.hpp +++ b/log-fourier.hpp @@ -20,6 +20,9 @@ private: Real τₛ; Real ωₛ; Real sₛ; + std::vector<Real> ts; + std::vector<Real> νs; + std::vector<Complex> Γs; public: Real shift; LogarithmicFourierTransform(unsigned N, Real k, Real Δτ, unsigned pad = 4, Real shift = 0.5); |