Merge pull request #216 from kmalhan/fix_process_model

Fixed Unit of process_model for First Kalman Filter in Chapter 4
This commit is contained in:
Roger Labbe 2018-04-25 14:30:43 -07:00 committed by GitHub
commit 4758f013e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -945,7 +945,7 @@
"x = gaussian(0., 20.**2) # dog's position, N(0, 20**2)\n",
"velocity = 1\n",
"dt = 1. # time step in seconds\n",
"process_model = gaussian(velocity*dt, process_var) \n",
"process_model = gaussian(velocity, process_var) \n",
" \n",
"# simulate dog and get measurements\n",
"dog = DogSimulation(\n",