lin_dsgn.h

来自「digital filter designer s handbook heade」· C头文件 代码 · 共 45 行

H
45
字号
//
//  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 + =
减小字号Ctrl + -
显示快捷键?