-
-
Notifications
You must be signed in to change notification settings - Fork 44
Affine Projection Adaptive Filter
Sambit Paul edited this page Dec 7, 2021
·
4 revisions

The parameters for this filter are as follows:
- Window Size ⇨ 7
int order = 3;
double mu = 0.25;
double eps = 0.001;
int length = 20;
AP filt1 = new AP(length, order, mu, eps, AP.WeightsFillMethod.ZEROS); // Initialising weights to zero
filt1.filter(desired, signal); // Weights are adapted so that the input signal can be modified to the desired signal
Wiki
-
Filters
- IIR Filters
- FIR Filters
- Kernel-Based Filter
- Adaptive Filters
-
Signals
-
Peak Detection
-
Transformations
-
Speech
-
Windowing