ch.unizh.ini.friend.simulation.filter
Interface Filter
- All Known Implementing Classes:
- HighPassFilter, LowPassFilter
public interface Filter
Common interface for filters.
- Version:
- $Revision: 1.3 $
- Author:
- Christof Marti
Method Summary |
float |
filter(float input,
float dt)
Returns the output of the filter based on the given input and the passed time. |
filter
float filter(float input,
float dt)
- Returns the output of the filter based on the given input and the passed time.
- Parameters:
input
- The input value.dt
- The time step.
- Returns:
- The output of the filter.