diff --git a/ft8/fft.h b/ft8/fft.h index d93fdbccd..285c0b14b 100644 --- a/ft8/fft.h +++ b/ft8/fft.h @@ -80,7 +80,6 @@ public: std::vector> one_fft_c(const std::vector &samples, int i0, int block, const char *why); std::vector> one_fft_cc(const std::vector> &samples, int i0, int block, const char *why); std::vector> one_ifft_cc(const std::vector> &bins, const char *why); - std::vector> analytic(const std::vector &x, const char *why); std::vector hilbert_shift(const std::vector &x, float hz0, float hz1, int rate); protected: @@ -90,6 +89,7 @@ protected: static FFTEngine *m_instance; private: + std::vector> analytic(const std::vector &x, const char *why); void fft_stats(); QMutex m_plansmu; QMutex m_plansmu2;