VAPoR  0.1
WaveFiltBior.h
Go to the documentation of this file.
1 #include <string>
2 #include "WaveFiltBase.h"
3 
4 using namespace std;
5 
6 #ifndef _WaveFiltBior_h_
7 #define _WaveFiltBior_h_
8 
9 namespace VAPoR {
10 
11 //
20 class WaveFiltBior : public WaveFiltBase {
21 
22 public:
23 
31  WaveFiltBior(const string &wavename);
32  virtual ~WaveFiltBior();
33 
36  virtual bool issymmetric() const { return(true); };
37 
38 
39 private:
40  void _analysis_initialize (int member);
41  void _synthesis_initialize (int member);
42 };
43 
44 }
45 
46 #endif
Biorthogonal spline family FIR filters.
Definition: WaveFiltBior.h:20
virtual bool issymmetric() const
Definition: WaveFiltBior.h:36
A base class for wavelet family filters.
Definition: WaveFiltBase.h:21