Package org.chsrobotics.lib.math.filters
Class MovingAverageFilter
java.lang.Object
org.chsrobotics.lib.math.filters.Filter
org.chsrobotics.lib.math.filters.MovingAverageFilter
Filter which computes the arithmetic mean of a stream of data.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumEnum of different definitions of the mean. -
Constructor Summary
ConstructorsConstructorDescriptionMovingAverageFilter(int window, MovingAverageFilter.MEAN_IMPLEMENTATION impl) Constructs a MovingAverageFilter. -
Method Summary
Modifier and TypeMethodDescriptiondoublecalculate(double value, double dtSeconds) Adds the value to the window and calculates the current output of the filter, with a change in time since the last call of this.doubleReturns the current output of the filter without updating with a new value.voidreset()Resets the history of the filter.Methods inherited from class org.chsrobotics.lib.math.filters.Filter
add, calculate, scalarMultiply
-
Constructor Details
-
MovingAverageFilter
Constructs a MovingAverageFilter.- Parameters:
window- Number of values to look back when calculating the average. If zero or negative, will be an indefinite window.impl- Implementation of the mean to use.
-
-
Method Details
-
calculate
public double calculate(double value, double dtSeconds) Description copied from class:FilterAdds the value to the window and calculates the current output of the filter, with a change in time since the last call of this.Some filters do not use time in their calculations, and this method is identical to
calculate()for them. -
reset
public void reset()Description copied from class:FilterResets the history of the filter. -
getCurrentOutput
public double getCurrentOutput()Description copied from class:FilterReturns the current output of the filter without updating with a new value.- Specified by:
getCurrentOutputin classFilter- Returns:
- The current output of the filter (0 if no values have been given to
calculate()).
-