bart_pdgm_util.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:1k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. // File = bart_pdgm_util;.h
  3. //
  4. #ifndef _BART_PDGM_UTIL_H_
  5. #define _BART_PDGM_UTIL_H_  
  6. #include <complex>
  7. #include "spec_estim.h"
  8. using namespace std;
  9. template <class T>
  10. class BartlettPeriodogram : public SpectrumEstimator<T>
  11. {
  12. public:
  13.    BartlettPeriodogram(int num_samps,
  14.                   int fft_len,
  15.                   double samp_intvl );
  16.    void Calculate(  T* time_signal );
  17. private:
  18.    complex<double>* Freq_Signal;
  19.    //int Num_Samps;
  20.    //int Fft_Len;
  21.    //double Samp_Intvl;
  22. };
  23. #endif // _BART_PDGM_H_