diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-04 16:31:11 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-04 16:31:11 -0300 |
commit | 61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1 (patch) | |
tree | 2131f41358582b2fb21cf49d3b95a522f78ea18a /fourier.hpp | |
parent | 82c348698ccaa41b2f455ba017113cab03590016 (diff) | |
download | code-61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1.tar.gz code-61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1.tar.bz2 code-61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1.zip |
Adopted new scaling of Γ₀ to keep z and y moderate
Diffstat (limited to 'fourier.hpp')
-rw-r--r-- | fourier.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fourier.hpp b/fourier.hpp index 086660a..c4c1cf2 100644 --- a/fourier.hpp +++ b/fourier.hpp @@ -31,4 +31,4 @@ public: std::string fourierFile(std::string prefix, unsigned p, unsigned s, Real λ, Real τ₀, Real y, unsigned log2n, Real τₘₐₓ); Real energy(const std::vector<Real>& C, const std::vector<Real>& R, unsigned p, unsigned s, Real λ, Real y, Real Δτ); std::tuple<std::vector<Complex>, std::vector<Complex>> RddfCtdfCt(FourierTransform& fft, const std::vector<Real>& C, const std::vector<Real>& R, unsigned p, unsigned s, Real λ); -Real estimateZ(FourierTransform& fft, const std::vector<Real>& C, const std::vector<Complex>& Ct, const std::vector<Real>& R, const std::vector<Complex>& Rt, unsigned p, unsigned s, Real λ, Real y); +Real estimateZ(FourierTransform& fft, const std::vector<Real>& C, const std::vector<Complex>& Ct, const std::vector<Real>& R, const std::vector<Complex>& Rt, unsigned p, unsigned s, Real λ, Real τ₀, Real y); |