-
-
Notifications
You must be signed in to change notification settings - Fork 43
Deconvolution
Sambit Paul edited this page Dec 14, 2021
·
5 revisions
Deconvolution works when the convolution was performed in either of these 2 modes:
- Full: This returns the convolution at each point of overlap between kernel and signal.
- Same: This returns the convolution such that it maintains the same size as the original signal.
Deconvolution does not work for Valid mode because there aren't enough data points for recovering the original signal.
The parameters for this filter are as follows:
- Mode of Operation ⇨ Can be "full", "same", "valid"
- Kernel ⇨ 1-D Array the signal is convolved with
String mode = "full"; //Can be "full", "same"
Deconvolution d2 = new Deconvolution(convolved, kernel);
double[] signal = d2.deconvolve(mode);
String mode = "same"; //Can be "full", "same"
Deconvolution d2 = new Deconvolution(convolved, kernel);
double[] signal = d2.deconvolve(mode);
Wiki
-
Filters
- IIR Filters
- FIR Filters
- Kernel-Based Filter
- Adaptive Filters
-
Signals
-
Peak Detection
-
Transformations
-
Speech
-
Windowing