not to change in ekf_estimation's args

This commit is contained in:
Yo Iida
2018-11-08 02:12:36 +09:00
parent 7a4d0a0b30
commit b0722d9f95

View File

@@ -183,7 +183,7 @@ def main():
xTrue, z, xDR, ud = observation(xTrue, xDR, u)
xEst, PEst = ekf_estimation(xEst, PEst, z, u)
xEst, PEst = ekf_estimation(xEst, PEst, z, ud)
# store data history
hxEst = np.hstack((hxEst, xEst))