2.11.2.6 idwt2(Pro)
Menu Information
Analysis: Signal Processing: Wavelet: 2D Reconstruction
Brief Information
Reconstruct a matrix from its coefficients
Additional Information
This feature is for OriginPro only.
Command Line Usage
1. idwt2 ca:=Mat(1) ch:=Mat(2) cv:=Mat(3) cd:=Mat(4) type:=db3;
X-Function Execution Options
Please refer to the page for additional option switches when accessing the x-function from script
Variables
Display Name
|
Variable Name
|
I/O and Type
|
Default Value
|
Description
|
Approximation Coefficients
|
ca
|
Input
MatrixObject
|
<>
|
Specify the approximation coefficients
|
Detail (Horizontal)
|
ch
|
Input
MatrixObject
|
<>
|
Specify the horizontal detail coefficients
|
Detail (Vertical)
|
cv
|
Input
MatrixObject
|
<>
|
Specify the vertical detail coefficients
|
Detail (Diagonal)
|
cd
|
Input
MatrixObject
|
<>
|
Specify the diagonal detail coefficients
|
Wavelet Type
|
type
|
Input
int
|
haar
|
Specify the mother wavelet
Option list
- haar:Haar
- Haar wavelet
- db 2:DB2
- Daubechies wavelet (N=4
- db 3:DB3
- Daubechies wavelet (N=6)
- db 4:DB4
- Daubechies wavelet (N=8)
- db 5:DB5
- Daubechies wavelet (N=10)
- db 6:DB6
- Daubechies wavelet (N=12)
- db 7:DB7
- Daubechies wavelet (N=14)
- db 8:DB8
- Daubechies wavelet (N=16)
- db 9:DB9
- Daubechies wavelet (N=18)
- db 10:DB10
- Daubechies wavelet (N=20)
- b11:Bior1.1
- Biorthogonal (Nr=1, Nd=1)
- b13:Bior1.3
- Biorthogonal (Nr=1, Nd=3)
- b15:Bior1.5
- Biorthogonal (Nr=1, Nd=5)
- b22:Bior2.2
- Biorthogonal (Nr=2, Nd=2)
- b24:Bior2.4
- Biorthogonal (Nr=2, Nd=4)
- b26:Bior2.6
- Biorthogonal (Nr=2, Nd=6)
- b28:Bior2.8
- Biorthogonal (Nr=2, Nd=8)
- b31:Bior3.1
- Biorthogonal (Nr=3, Nd=1)
- b33:Bior3.3
- Biorthogonal (Nr=3 Nd=3)
- b35:Bior3.5
- Biorthogonal (Nr=3, Nd=5)
- b37:Bior3.7
- Biorthogonal (Nr=3, Nd=7)
|
Output Matrix
|
om
|
Output
MatrixObject
|
[<new>]<new>!
|
Specify the output matrix
See the syntax here.
|
Examples
1. To reconstruct a 2D matrix from 4 matrix objects in the active matrix layer, use the script command:
idwt2 ca:=mat(1) ch:=mat(2) cv:=mat(3) cd:=mat(4);
2. To open the idwt2 dialog, use the script command:
idwt2 -d;
3. To perform idwt2 to data using a pre-saved analysis theme file, save your preferences in the advanced options in the idwt2 dialog, and then execute it by typing (for example, but using your own saved-theme title) the script command:
idwt2 -t "my theme.oth"
More Information
For more information, please refer to our User Guide.
Related X-Functions
dwt2, dwt, idwt
Keywords:wavelet, approximation
|