add animation

This commit is contained in:
Atsushi Sakai
2018-02-03 09:49:38 -08:00
parent 014fd867d0
commit f186bbc04e
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 MiB

View File

@@ -10,9 +10,9 @@ import numpy as np
import math
import matplotlib.pyplot as plt
# Estimation parameter of EKF
# Estimation parameter of PF
Q = np.diag([0.1])**2 # range error
R = np.diag([1.0, math.radians(40.0)])**2
R = np.diag([1.0, math.radians(40.0)])**2 # input error
# Simulation parameter
Qsim = np.diag([0.2])**2