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

📄 gen_win.h

📁 digital filter designer s handbook header files
💻 H
字号:
//
//  File = gen_win.h
//

#ifndef _GEN_WIN_H_
#define _GEN_WIN_H_ 

#include <fstream.h>

class GenericWindow
{
public:

  // constructors
  
  GenericWindow( void );
  GenericWindow( int length );
  
  void Initialize( int length );
  
  double GetDataWinCoeff( int samp_indx);
  
  void DumpHalfLagWindow( ofstream* output_stream);
  
  double* GetDataWindow( void );
  
  double* GetHalfLagWindow( void );
  
  double* GetLagWindow( void );
  
  int GetNumTaps( void );
  
protected:

  int Length;
  int Half_Length;
  double *Half_Lag_Win;
  double *Lag_Win;
  double *Data_Win;
};

#endif
  

⌨️ 快捷键说明

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