Package-level declarations
Signal filters: EMAFilter (exponential moving average), MedianFilter (moving-window median), SlewRateLimiter (rate-of-change limiting), and KalmanFilter (fuses a LinearModel with noisy measurements for optimal state estimation).
Types
Link copied to clipboard
Link copied to clipboard
A class that implements a moving-window median filter. Useful for reducing measurement noise, especially with processes that generate occasional, extreme outliers (such as values from vision processing, LIDAR, or ultrasonic sensors).
Link copied to clipboard
class SlewRateLimiter @JvmOverloads constructor(var positiveRateLimit: Double, var negativeRateLimit: Double, initialValue: Double = 0.0)
A class that limits the rate of change of an input value. Useful for implementing voltage, setpoint, and/or output ramps. A slew-rate limit is most appropriate when the quantity being controlled is a velocity or a voltage.