-
-
Notifications
You must be signed in to change notification settings - Fork 43
Wiener Filter
Sambit Paul edited this page Dec 2, 2023
·
3 revisions
The parameters for this filter are as follows:
- Window Size ⇨ 7
int windowSize = 7; //can be anything less than length of signal
Wiener wf = new Wiener(windowSize);
double[] out = wf.filter(signal); //get the result after filtering
Wiki
-
Filters
- IIR Filters
- FIR Filters
- Kernel-Based Filter
- Adaptive Filters
-
Signals
-
Peak Detection
-
Transformations
-
Speech
-
Windowing