mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 16:57:58 -05:00
change resampling calculation to match with the book
This commit is contained in:
@@ -141,9 +141,8 @@ def re_sampling(px, pw):
|
||||
N_eff = 1.0 / (pw.dot(pw.T))[0, 0] # Effective particle number
|
||||
if N_eff < NTh:
|
||||
w_cum = np.cumsum(pw)
|
||||
base = np.cumsum(pw * 0.0 + 1 / NP) - 1 / NP
|
||||
re_sample_id = base + np.random.rand(base.shape[0]) / NP
|
||||
|
||||
base = np.arange(0.0, 1.0, 1/NP)
|
||||
re_sample_id = base + np.random.uniform(0, 1/NP)
|
||||
indexes = []
|
||||
ind = 0
|
||||
for ip in range(NP):
|
||||
|
||||
Reference in New Issue
Block a user