-
-
Notifications
You must be signed in to change notification settings - Fork 43
Decimate
Sambit Paul edited this page Dec 2, 2023
·
5 revisions
Decimate downsamples the input signal after applying an anti-aliasing filter.
The parameters for this filter are as follows:
- Down Sampling Factor ⇨ 5
- Sampling Frequency ⇨ 100
int Fs = 100;
int factor = 5;
boolean zero = false;
Decimate d = new Decimate(signal, Fs, zero);
double[] out = d.decimate(factor);
The parameters for this filter are as follows:
- Down Sampling Factor ⇨ 5
- Sampling Frequency ⇨ 100
int Fs = 100;
int factor = 5;
boolean zero = true;
Decimate d = new Decimate(signal, Fs, zero);
double[] out = d.decimate(factor);
Wiki
-
Filters
- IIR Filters
- FIR Filters
- Kernel-Based Filter
- Adaptive Filters
-
Signals
-
Peak Detection
-
Transformations
-
Speech
-
Windowing