
Contents |
Reconstruction
Inverted 1D Wavelet Transform from its approximation coefficients and detail coefficients.
This feature is for OriginPro only.
1. idwt ca:=Col(1) cd:=Col(2);
2. idwt ca:=Col(1) cd:=Col(2) ext:=pad0;
3. idwt ca:=Col(1) cd:=Col(2) type:=db3;
4. idwt ca:=Col(1) cd:=Col(2) ox:=Col(3); //coefficients in Column 1 and 2; save the result to Column 3
| Display Name | Variable Name | I/O and Type | Default Value | Description |
|---|---|---|---|---|
| Approximation Coefficients | ca |
Input vector | |
Specify the approximation coefficients |
| Detail Coefficients | cd |
Input vector | |
Specify the detail coefficients |
| Wavelet Type | type |
Input int | |
Specify the wavelet type. This should correspond to the wavelet type used by the wavelet decomposition that has produced the input coefficients. Option list
|
| Boundary | ext |
Input int | |
Specify the end extension method to deal with boundary effects Option list
|
| Output | ox |
Output vector | |
Specify the output signal |
idwt reconstructs a signal from its approximation coefficients and detail coefficients.
To construct the signal correctly, the wavelet type and the boundary should be the same with the options chosen for the decomposition that has produced the coefficients.
1. To reconstruct a signal from its approximation coefficients and detail coefficients saved in Column 1 and 2 of the active sheet using DB4 wavelet and periodic as the extension mode, use the Command Window:
idwt ca:=Col(1) cd:=Col(2) type:=1
2. To perform idwt using a pre-saved analysis theme called MyTheme, use the Command Window:
idwt -t "MyTheme"
For more information, please refer to our User Guide.