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

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = trianglr.h
  3. //
  4. #ifndef _TRIANGLR_H_
  5. #define _TRIANGLR_H_
  6. #include "gen_win.h"
  7. class TriangularWindow : public GenericWindow
  8. {
  9. public:
  10.   // constructors
  11.   
  12. //  TriangularWindow( istream& uin,
  13. //                    ostream& uout );
  14.   TriangularWindow( int length,
  15.                     int zero_ends );
  16.   void GenerateWindow( int length,
  17.                        int zero_ends );
  18.   
  19. //private:
  20.   //int Num_Taps;
  21.   //double *Half_Lag_Window;
  22. };
  23.                                
  24. #endif
  25.