public class CDFWavelet extends Object
| Constructor and Description |
|---|
CDFWavelet() |
| Modifier and Type | Method and Description |
|---|---|
void |
fwt53(double[] x,
int n)
fwt53 - Forward biorthogonal 5/3 wavelet transform (lifting implementation) x is an input signal, which will be
replaced by its output transform.
|
void |
fwt97(double[] x,
int n)
Cohen-Daubechies-Feauveau forward biorthogonal 9/7 wavelet transform (lifting implementation)
The first half part of the output signal contains the approximation coefficients.
|
void |
iwt53(double[] x,
int n)
iwt53 - Inverse biorthogonal 5/3 wavelet transform This is the inverse of fwt53 so that iwt53(fwt53(x,n),n)=x for
every signal x of length n.
|
void |
iwt97(double[] x,
int n)
iwt97 - Inverse biorthogonal 9/7 wavelet transform This is the inverse of fwt97 so that iwt97(fwt97(x,n),n)=x for
every signal x of length n.
|
static void |
main(String[] argv) |
public void fwt53(double[] x,
int n)
x - input signal, which will be replaced by its output transformn - length of the signal, and must be a power of 2public void fwt97(double[] x,
int n)
x - input signal, which will be replaced by its output transformn - length of the signal, and must be a power of 2public void iwt53(double[] x,
int n)
x - input signal, which will be replaced by its output transformn - length of the signal, and must be a power of 2public void iwt97(double[] x,
int n)
x - input signal, which will be replaced by its output transformn - length of the signal, and must be a power of 2public static void main(String[] argv)
Copyright © 2020 GSI Helmholtzzentrum für Schwerionenforschung GmbH. All rights reserved.