SimpleKalman class Filter

Here is a one-dimensional Kalman filter.

Constructors

SimpleKalman({required double errorMeasure, required double errorEstimate, required double q})
Create Kalman filter object

Properties

errorEstimate double
error range
getter/setter pair
errorMeasure double
value range
final
hashCode int
The hash code for this object.
no setterinherited
q double
filter sensitivity factor (0.001 ... 10)
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

filtered(double value) double
Function to filter values
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited