Merge pull request #207 from Pask2/patch-1

Incorrect derivative in equation, and labelled a 1st order filter as 2nd order.
This commit is contained in:
Roger Labbe 2018-01-29 09:45:42 -08:00 committed by GitHub
commit ff9735d0a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -642,7 +642,7 @@
"$$\\begin{aligned}\n",
"x_1 &= x \\\\\n",
"x_2 &= \\dot x_1 \\\\\n",
"\\dot x_2 &= \\dot x_1 = \\ddot x\n",
"\\dot x_2 &= \\ddot x_1 = \\ddot x\n",
"\\end{aligned}$$\n",
"\n",
"As is common I dropped the $(t)$ for notational convenience. This gives the equation\n",

View File

@ -1774,7 +1774,7 @@
"\n",
"plot_kf_output(xs, fxs3, zs, aspect_equal=False)\n",
"plot_residuals(xs[:, 0], fxs3[:, 0], ps3[:, 0], \n",
" 'Second Order Position Residuals',\n",
" 'First Order Position Residuals',\n",
" 'meters') "
]
},