hann.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = hann.h
  3. //
  4. #ifndef _HANN_H_
  5. #define _HANN_H_
  6. #include "gen_win.h"
  7. //======================================================
  8. class HannWindow : public GenericWindow
  9. {
  10. public:
  11.    HannWindow( int length, int zero_ends );
  12.    void GenerateWindow( int length, int zero_ends );
  13. private:
  14.    int Num_Taps;
  15.    double *Half_Lag_Window;
  16. };
  17. #endif
  18.