⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 samp_spect_util.h

📁 《无线通信系统仿真——c++使用模型》这本书的源代码
💻 H
字号:
//
// File = samp_spect_util.h
//
#ifndef _SAMP_SPECT_UTIL_H_
#define _SAMP_SPECT_UTIL_H_  

#include <complex>
#include "spec_estim.h"


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

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


#endif // _SAMP_SPECT_H_

⌨️ 快捷键说明

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