Skip to content

Commit 59611f0

Browse files
committed
Merge branch 'master' of https://github.com/rlabbe/filterpy
2 parents 1030d61 + 5a2747e commit 59611f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

filterpy/kalman/IMM.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def update(self, z, u=None):
139139
L = zeros(len(self.filters))
140140
for i, f in enumerate(self.filters):
141141
f.update(z)
142-
L[i] = f._likelihood
142+
L[i] = f.likelihood
143143

144144
# initial condition IMM state, covariance
145145
xs, Ps = [], []

0 commit comments

Comments
 (0)