Interface Filter
-
- All Known Implementing Classes:
MovingAverage
,MovingAverageByExtension
public interface Filter
A filter, for signal processing, takes (real) input signal and transforms it to (real) output signal. Often, a filter system performs mathematical operations on a sampled, discrete-time signal to reduce or enhance certain aspects of that signal.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double[]
transform(double[] xt)
Transforms the input signal into the output signal.
-