summaryrefslogtreecommitdiffhomepage
path: root/fft.h
diff options
context:
space:
mode:
Diffstat (limited to 'fft.h')
-rw-r--r--fft.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/fft.h b/fft.h
index 980b4b3..4bc493d 100644
--- a/fft.h
+++ b/fft.h
@@ -24,8 +24,6 @@ public:
FFT& SetHalfOnly(bool enable);
private:
- int bitreverse(int i) const;
-
void reorder(const std::vector<std::complex<double>>& src, std::vector<std::complex<double>>& dst) const;
void fft_recursive(std::vector<std::complex<double>>::iterator X, int N) const;
void fft_half(std::vector<std::complex<double>>::iterator X, int N) const;
@@ -44,6 +42,4 @@ private:
std::unique_ptr<Impl> mImpl;
}; // class IFFT
-std::vector<double> magnitudes(std::vector<std::complex<double>>& v);
-
} // namespace RIT