![]() |
RTXI 1.3
|
00001 /* 00002 * Rectangular window 00003 */ 00004 00005 #ifndef _RECTNGLR_H_ 00006 #define _RECTNGLR_H_ 00007 00008 #include "gen_win.h" 00009 00010 class RectangularWindow: public GenericWindow { 00011 public: 00012 00013 // constructors 00014 00015 RectangularWindow(int length); 00016 00017 void GenerateWindow(int length); 00018 00019 private: 00020 00021 int Num_Taps; 00022 double *Half_Lag_Window; 00023 }; 00024 00025 #endif