You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function performs one-dimensional inverse discrete wavelet transform on the input series, reconstructing the original data from DWT decomposed wavelet coefficients.
3294
+
3295
+
**Name:** IDWT
3296
+
3297
+
**Input:** Only support a single input series. The type is INT32 / INT64 / FLOAT / DOUBLE.
3298
+
3299
+
**Parameters:**
3300
+
3301
+
+`method`: The type of wavelet. May select 'Haar', 'DB4', 'DB6', 'DB8', where DB means Daubechies. User may offer coefficients of wavelet transform and ignore this parameter. Case ignored.
3302
+
+`coef`: Coefficients of wavelet transform. When providing this parameter, use comma ',' to split them, and leave no spaces or other punctuations.
3303
+
+`layer`: Times to transform. The number of output vectors equals $layer+1$. Default is 1.
3304
+
3305
+
**Output:** Output a single series. The type is DOUBLE. The length is the same as the input.
3306
+
3307
+
**Note:**
3308
+
* The length of input series must be an integer number power of 2.
3309
+
* The parameter settings of the IDWT function (method/coef/layer) should be consistent with the corresponding DWT transformation to correctly reconstruct the original data.
3310
+
* Typically, the input of IDWT is the output result of the DWT function.
This function performs one-dimensional inverse discrete wavelet transform on the input series, reconstructing the original data from DWT decomposed wavelet coefficients.
3295
+
3296
+
**Name:** IDWT
3297
+
3298
+
**Input:** Only support a single input series. The type is INT32 / INT64 / FLOAT / DOUBLE.
3299
+
3300
+
**Parameters:**
3301
+
3302
+
+`method`: The type of wavelet. May select 'Haar', 'DB4', 'DB6', 'DB8', where DB means Daubechies. User may offer coefficients of wavelet transform and ignore this parameter. Case ignored.
3303
+
+`coef`: Coefficients of wavelet transform. When providing this parameter, use comma ',' to split them, and leave no spaces or other punctuations.
3304
+
+`layer`: Times to transform. The number of output vectors equals $layer+1$. Default is 1.
3305
+
3306
+
**Output:** Output a single series. The type is DOUBLE. The length is the same as the input.
3307
+
3308
+
**Note:**
3309
+
* The length of input series must be an integer number power of 2.
3310
+
* The parameter settings of the IDWT function (method/coef/layer) should be consistent with the corresponding DWT transformation to correctly reconstruct the original data.
3311
+
* Typically, the input of IDWT is the output result of the DWT function.
This function performs one-dimensional inverse discrete wavelet transform on the input series, reconstructing the original data from DWT decomposed wavelet coefficients.
3299
+
3300
+
**Name:** IDWT
3301
+
3302
+
**Input:** Only support a single input series. The type is INT32 / INT64 / FLOAT / DOUBLE.
3303
+
3304
+
**Parameters:**
3305
+
3306
+
+`method`: The type of wavelet. May select 'Haar', 'DB4', 'DB6', 'DB8', where DB means Daubechies. User may offer coefficients of wavelet transform and ignore this parameter. Case ignored.
3307
+
+`coef`: Coefficients of wavelet transform. When providing this parameter, use comma ',' to split them, and leave no spaces or other punctuations.
3308
+
+`layer`: Times to transform. The number of output vectors equals $layer+1$. Default is 1.
3309
+
3310
+
**Output:** Output a single series. The type is DOUBLE. The length is the same as the input.
3311
+
3312
+
**Note:**
3313
+
* The length of input series must be an integer number power of 2.
3314
+
* The parameter settings of the IDWT function (method/coef/layer) should be consistent with the corresponding DWT transformation to correctly reconstruct the original data.
3315
+
* Typically, the input of IDWT is the output result of the DWT function.
0 commit comments