|
libwt
1.0.0
A C++ library for the continous wavelet transform.
|
Abstract base class of all wavelet analyses (transform and synthesis). More...
#include <waveletanalysis.hh>
Public Member Functions | |
| WaveletAnalysis (const WaveletAnalysis &other) | |
| Copy constructor. More... | |
| virtual | ~WaveletAnalysis () |
| Destructor. More... | |
| size_t | nScales () const |
| Returns the number of scales of this wavelet transform. More... | |
| const RVector & | scales () const |
| Returns the scales of the wavelet transform. More... | |
| void | scales (double *outScales, int Nscales) const |
Returns the (the first Nscales) scales of the wavelet transform stored in outScales. More... | |
| const Wavelet & | wavelet () const |
| Returns the wavelet instance of this transform. More... | |
Protected Member Functions | |
| WaveletAnalysis (const Wavelet &wavelet, const RVector &scales) | |
| Hidden constructor from the specified wavelet and scales. More... | |
| WaveletAnalysis (const Wavelet &wavelet, double *scales, int Nscales) | |
| Hidden constructor from the specified wavelet and scales. More... | |
Protected Attributes | |
| Wavelet | _wavelet |
| The (mother-) wavelet to of the transform. More... | |
| RVector | _scales |
| The scales (in samples) of the transform. More... | |
Abstract base class of all wavelet analyses (transform and synthesis).
It simply holds the wavelet and the scales of the analysis.
|
protected |
Hidden constructor from the specified wavelet and scales.
|
protected |
Hidden constructor from the specified wavelet and scales.
| WaveletAnalysis::WaveletAnalysis | ( | const WaveletAnalysis & | other | ) |
Copy constructor.
|
virtual |
Destructor.
|
inline |
Returns the number of scales of this wavelet transform.
|
inline |
Returns the scales of the wavelet transform.
|
inline |
Returns the (the first Nscales) scales of the wavelet transform stored in outScales.
|
inline |
Returns the wavelet instance of this transform.
|
protected |
The scales (in samples) of the transform.
|
protected |
The (mother-) wavelet to of the transform.
1.8.9.1