summaryrefslogtreecommitdiffhomepage
path: root/fft.h
diff options
context:
space:
mode:
Diffstat (limited to 'fft.h')
-rw-r--r--fft.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/fft.h b/fft.h
index 8c1e161..980b4b3 100644
--- a/fft.h
+++ b/fft.h
@@ -44,17 +44,6 @@ private:
std::unique_ptr<Impl> mImpl;
}; // class IFFT
-class AutoCorrelation {
-public:
- AutoCorrelation(int size);
- ~AutoCorrelation();
- std::vector<std::complex<double>> operator()(const std::vector<std::complex<double>> &v) const;
-
-private:
- struct Impl;
- std::unique_ptr<Impl> mImpl;
-}; // class AutoCorrelation
-
std::vector<double> magnitudes(std::vector<std::complex<double>>& v);
} // namespace RIT