bart_pdgm_util.h

来自「终于找到了bpsk信号的调制」· C头文件 代码 · 共 29 行

H
29
字号
//
// File = bart_pdgm_util;.h
//
#ifndef _BART_PDGM_UTIL_H_
#define _BART_PDGM_UTIL_H_  

#include <complex>
#include "spec_estim.h"
using namespace std;


template <class T>
class BartlettPeriodogram : public SpectrumEstimator<T>
{
public:
   BartlettPeriodogram(int num_samps,
                  int fft_len,
                  double samp_intvl );

   void Calculate(  T* time_signal );
private:
   complex<double>* Freq_Signal;
   //int Num_Samps;
   //int Fft_Len;
   //double Samp_Intvl;
};


#endif // _BART_PDGM_H_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?