VAPoR  0.1
WaveFiltCoif.h
Go to the documentation of this file.
1 #include <string>
2 #include <vapor/WaveFiltBase.h>
3 
4 using namespace std;
5 
6 #ifndef _WaveFiltCoif_h_
7 #define _WaveFiltCoif_h_
8 
9 namespace VAPoR {
10 
11 //
20 class WaveFiltCoif : public WaveFiltBase {
21 
22 public:
23 
29  WaveFiltCoif(const string &wavename);
30  virtual ~WaveFiltCoif();
31 
32 
33 private:
34  void _analysis_initialize (int member);
35  void _synthesis_initialize (int member);
36 };
37 
38 }
39 
40 #endif
A base class for wavelet family filters.
Definition: WaveFiltBase.h:21
Coiflet family FIR filters.
Definition: WaveFiltCoif.h:20