Fixed a few typos.
Text and code used slightly different number from earlier edits.
This commit is contained in:
parent
ea6a9601a2
commit
d096acce09
@ -1,7 +1,7 @@
|
||||
{
|
||||
"metadata": {
|
||||
"name": "",
|
||||
"signature": "sha256:d7093e4e68ab277cdf9c863a616b65419ddcbbd2b8607abd8a043e73048fdf03"
|
||||
"signature": "sha256:94fc7a6878c4e0d59e4a1f38278285a034bc499fafe124ac9caa33b209cf1ce5"
|
||||
},
|
||||
"nbformat": 3,
|
||||
"nbformat_minor": 0,
|
||||
@ -261,7 +261,7 @@
|
||||
"output_type": "pyout",
|
||||
"prompt_number": 1,
|
||||
"text": [
|
||||
"<IPython.core.display.HTML at 0x7f07c9bf9400>"
|
||||
"<IPython.core.display.HTML at 0x7f8959eac128>"
|
||||
]
|
||||
}
|
||||
],
|
||||
@ -1137,7 +1137,7 @@
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"On this run I got a standard deviation of 0.523 vs the value of 0.422 for the fused measurements. "
|
||||
"On this run I got a standard deviation of 0.523 vs the value of 0.391 for the fused measurements. "
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -1242,7 +1242,7 @@
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"So to create a trajectory starting at (0,15) with a velocity of $60 \\frac{m}{s}$ and an angle of $65^\\circ$ we would write:\n",
|
||||
"So to create a trajectory starting at (0,15) with a velocity of $100 \\frac{m}{s}$ and an angle of $60^\\circ$ we would write:\n",
|
||||
"\n",
|
||||
" traj = BallTrajectory2D (x0=0, y0=15, velocity=100, theta_deg=60)\n",
|
||||
" \n",
|
||||
|
17
clean_book
Executable file
17
clean_book
Executable file
@ -0,0 +1,17 @@
|
||||
#! /bin/bash
|
||||
rm --f *.tex
|
||||
rm --f *.toc
|
||||
rm --f *.aux
|
||||
rm --f *.log
|
||||
rm --f *.out
|
||||
rm --f ./*_files/*.png
|
||||
rm --f Kalman_and_Bayesian_Filters_in_Python.ipynb
|
||||
rm --f Kalman_and_Bayesian_Filters_in_Python.toc
|
||||
rm --f Kalman_and_Bayesian_Filters_in_Python.tex
|
||||
rmdir ./*_files/ 2> /dev/null
|
||||
|
||||
if (( $# == 1)); then
|
||||
if [ "@1" == all ]; then
|
||||
rm Kalman_and_Bayesian_Filters_in_Python.pdf;
|
||||
fi
|
||||
fi
|
Loading…
Reference in New Issue
Block a user