diff --git a/filterpy/kalman/kalman_filter.py b/filterpy/kalman/kalman_filter.py index 3f9b559..e3cfd7b 100644 --- a/filterpy/kalman/kalman_filter.py +++ b/filterpy/kalman/kalman_filter.py @@ -72,8 +72,11 @@ class KalmanFilter(object): S : numpy.array Systen uncertaintly projected to measurement space + likelihood : scalar + Likelihood of last measurement update. + log_likelihood : scalar - Log likelihood of last measurment update. + Log likelihood of last measurement update. """ def __init__(self, dim_x, dim_z, dim_u=0): @@ -146,7 +149,6 @@ def update(self, z, R=None, H=None): H : np.array, or None Optionally provide H to override the measurement function for this one call, otherwise self.H will be used. - """ if z is None: