PLLs Phase Locked Loops
FFT Fast Fourier Transform
CVSD Continuous Variable Slope Delta
Filters
Also:
See also:
// perform one filtering step
public double filter(double x) {
y = b0 * x + b1 * x1 + b2 * x2 - a1 * y1 - a2 * y2;
x2 = x1;
x1 = x;
y2 = y1;
y1 = y;
return (y);
}
See: