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

📄 lin_dsgn.h

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

#ifndef _LIN_DSGN_H_
#define _LIN_DSGN_H_ 

#include "typedefs.h"

class LinearPhaseFirDesign : public FirFilterDesign
{
 public:
  
  //---------------------
  // default constructor
  
  LinearPhaseFirDesign( );
  
  //---------------------------------------------
  // constructor that allocates (via base class)
  // an array of length num_taps to hold
  // filter coefficients

  LinearPhaseFirDesign::LinearPhaseFirDesign( int num_taps );

  //-------------------------------------------------
  //  method to return band configuration 
  //  ( lowpass, bandpass, highpass, or bandstop )

  BAND_CONFIG_TYPE GetBandConfig(void);

  //----------------------------------------------
  // method to return type of linear phase filter
  
  int GetFirType(void);
  
 protected:
  
  BAND_CONFIG_TYPE Band_Config;
  
  int Fir_Type;
};

#endif

⌨️ 快捷键说明

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