diff options
Diffstat (limited to 'fourier.hpp')
-rw-r--r-- | fourier.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fourier.hpp b/fourier.hpp index c4c1cf2..406f2f2 100644 --- a/fourier.hpp +++ b/fourier.hpp @@ -25,7 +25,9 @@ public: FourierTransform(unsigned n, Real Δω, Real Δτ, unsigned flags = 0); ~FourierTransform(); std::vector<Complex> fourier(const std::vector<Real>& c); + std::vector<Complex> fourier(); std::vector<Real> inverse(const std::vector<Complex>& ĉ); + void writeToA(unsigned i, Real ai); }; std::string fourierFile(std::string prefix, unsigned p, unsigned s, Real λ, Real τ₀, Real y, unsigned log2n, Real τₘₐₓ); |