1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
.. _ref-mra:
.. currentmodule:: pywt
Multiresolution Analysis
------------------------
The functions in this module can be used to project a signal onto wavelet
subspaces and an approximation subspace. This is an additive decomposition such
that the sum of the coefficients equals the original signal. The projected
signal coefficients remains temporally aligned with the original, regardless
of the symmetry of the wavelet used for the analysis.
Multilevel 1D ``mra``
~~~~~~~~~~~~~~~~~~~~~
.. autofunction:: mra
Multilevel 2D ``mra2``
~~~~~~~~~~~~~~~~~~~~~~
.. autofunction:: mra2
Multilevel n-dimensional ``mran``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autofunction:: mran
Inverse Multilevel 1D ``imra``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autofunction:: imra
Inverse Multilevel 2D ``imra2``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autofunction:: imra2
Inverse Multilevel n-dimensional ``imran``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. autofunction:: imran
|