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