From e7178023a50c5cc5165f6ae544b89b5537654a8d Mon Sep 17 00:00:00 2001 From: Pask2 <30237897+Pask2@users.noreply.github.com> Date: Mon, 29 Jan 2018 17:33:57 +0000 Subject: [PATCH 1/2] Update 07-Kalman-Filter-Math.ipynb --- 07-Kalman-Filter-Math.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-Kalman-Filter-Math.ipynb b/07-Kalman-Filter-Math.ipynb index 8dbbb2c..1e57e6e 100644 --- a/07-Kalman-Filter-Math.ipynb +++ b/07-Kalman-Filter-Math.ipynb @@ -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", From 00407ab8eb9c99259f2c2177f28068e1441f6ea3 Mon Sep 17 00:00:00 2001 From: Pask2 <30237897+Pask2@users.noreply.github.com> Date: Mon, 29 Jan 2018 18:35:03 +0100 Subject: [PATCH 2/2] fix wrong ref --- 08-Designing-Kalman-Filters.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08-Designing-Kalman-Filters.ipynb b/08-Designing-Kalman-Filters.ipynb index 32180e5..d7dc190 100644 --- a/08-Designing-Kalman-Filters.ipynb +++ b/08-Designing-Kalman-Filters.ipynb @@ -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') " ] },