diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-18 18:29:28 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-18 18:29:28 -0300 |
commit | 2653586bab4f9519e18be93caea2dea7f891a8e6 (patch) | |
tree | 075bfe4ac5ababfb8a4bbb5ef7a9e7db9e40f9b1 /log-fourier.hpp | |
parent | a019e4827076b85b89a0a0f58da2bfae4927820c (diff) | |
download | code-2653586bab4f9519e18be93caea2dea7f891a8e6.tar.gz code-2653586bab4f9519e18be93caea2dea7f891a8e6.tar.bz2 code-2653586bab4f9519e18be93caea2dea7f891a8e6.zip |
Neutral refactoring, edited .gitignore
Diffstat (limited to 'log-fourier.hpp')
-rw-r--r-- | log-fourier.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/log-fourier.hpp b/log-fourier.hpp index 29717cd..5651ddb 100644 --- a/log-fourier.hpp +++ b/log-fourier.hpp @@ -42,13 +42,13 @@ public: std::string logFourierFile(std::string prefix, unsigned p, unsigned s, Real λ, Real τ₀, Real β, unsigned log2n, Real Δτ, Real shift); -void logFourierSave(const std::vector<Real>& C, const std::vector<Real>& R, const std::vector<Complex>& Ct, const std::vector<Complex>& Rt, unsigned p, unsigned s, Real λ, Real τ₀, Real β, unsigned log2n, Real Δτ, Real shift); +void logFourierSave(const std::vector<Real>& C, const std::vector<Real>& R, const std::vector<Complex>& Ĉ, const std::vector<Complex>& Ȓ, unsigned p, unsigned s, Real λ, Real τ₀, Real β, unsigned log2n, Real Δτ, Real shift); -bool logFourierLoad(std::vector<Real>& C, std::vector<Real>& R, std::vector<Complex>& Ct, std::vector<Complex>& Rt, unsigned p, unsigned s, Real λ, Real τ₀, Real β, unsigned log2n, Real Δτ, Real shift); +bool logFourierLoad(std::vector<Real>& C, std::vector<Real>& R, std::vector<Complex>& Ĉ, std::vector<Complex>& Ȓ, unsigned p, unsigned s, Real λ, Real τ₀, Real β, unsigned log2n, Real Δτ, Real shift); -std::tuple<std::vector<Complex>, std::vector<Complex>> RddfCtdfCt(LogarithmicFourierTransform& fft, const std::vector<Real>& C, const std::vector<Real>& R, unsigned p, unsigned s, Real λ); +std::tuple<std::vector<Complex>, std::vector<Complex>> ΣD(LogarithmicFourierTransform& fft, const std::vector<Real>& C, const std::vector<Real>& R, Real β, unsigned p, unsigned s, Real λ); -Real estimateZ(LogarithmicFourierTransform& 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 β); +Real estimateZ(LogarithmicFourierTransform& fft, const std::vector<Real>& C, const std::vector<Complex>& Ĉ, const std::vector<Real>& Ȓ, const std::vector<Complex>& Rt, unsigned p, unsigned s, Real λ, Real τ₀, Real β); Real energy(const LogarithmicFourierTransform& fft, const std::vector<Real>& C, const std::vector<Real>& R, unsigned p, unsigned s, Real λ, Real β); |