mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 13:18:18 -05:00
add animation
This commit is contained in:
BIN
Localization/particle_filter/animation.gif
Normal file
BIN
Localization/particle_filter/animation.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.7 MiB |
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user