Skip to content

Commit 2258eac

Browse files
committed
reran all notebooks after a bunch of merges to ensure all are in same environment/state
1 parent c9a415f commit 2258eac

16 files changed

+451
-590
lines changed

00-Preface.ipynb

+5-5
Large diffs are not rendered by default.

01-g-h-filter.ipynb

+38-38
Large diffs are not rendered by default.

02-Discrete-Bayes.ipynb

+29-29
Large diffs are not rendered by default.

03-Gaussians.ipynb

+31-31
Large diffs are not rendered by default.

04-One-Dimensional-Kalman-Filters.ipynb

+31-47
Large diffs are not rendered by default.

05-Multivariate-Gaussians.ipynb

+41-41
Large diffs are not rendered by default.

06-Multivariate-Kalman-Filters.ipynb

+33-157
Large diffs are not rendered by default.

07-Kalman-Filter-Math.ipynb

+17-17
Large diffs are not rendered by default.

08-Designing-Kalman-Filters.ipynb

+54-54
Large diffs are not rendered by default.

09-Nonlinear-Filtering.ipynb

+19-19
Large diffs are not rendered by default.

10-Unscented-Kalman-Filter.ipynb

+40-40
Large diffs are not rendered by default.

11-Extended-Kalman-Filters.ipynb

+22-22
Large diffs are not rendered by default.

12-Particle-Filters.ipynb

+21-21
Large diffs are not rendered by default.

13-Smoothing.ipynb

+24-24
Large diffs are not rendered by default.

14-Adaptive-Filtering.ipynb

+32-32
Large diffs are not rendered by default.

Supporting_Notebooks/Interactions.ipynb

+14-13
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
],
3333
"source": [
3434
"#format the book\n",
35-
"from __future__ import division, print_function\n",
3635
"%matplotlib inline\n",
3736
"import sys\n",
3837
"sys.path.insert(0, '..')\n",
@@ -93,13 +92,13 @@
9392
},
9493
{
9594
"cell_type": "code",
96-
"execution_count": 5,
95+
"execution_count": 2,
9796
"metadata": {},
9897
"outputs": [
9998
{
10099
"data": {
101100
"application/vnd.jupyter.widget-view+json": {
102-
"model_id": "5f6d72e65be24e628d9f6f144f309234",
101+
"model_id": "034e065d0c5e49b0b8f6f0407b4b4200",
103102
"version_major": 2,
104103
"version_minor": 0
105104
},
@@ -113,8 +112,8 @@
113112
],
114113
"source": [
115114
"%matplotlib inline\n",
116-
"from IPython.html.widgets import interact, interactive, fixed\n",
117-
"import IPython.html.widgets as widgets\n",
115+
"from ipywidgets import interact, interactive, fixed\n",
116+
"import ipywidgets as widgets\n",
118117
"import numpy as np\n",
119118
"import numpy.linalg as linalg\n",
120119
"import math\n",
@@ -174,12 +173,14 @@
174173
{
175174
"cell_type": "code",
176175
"execution_count": 3,
177-
"metadata": {},
176+
"metadata": {
177+
"scrolled": true
178+
},
178179
"outputs": [
179180
{
180181
"data": {
181182
"application/vnd.jupyter.widget-view+json": {
182-
"model_id": "cc2e30d2d25946d598ba42683e49c891",
183+
"model_id": "9c0bee6040b745dbadaafbd03de426ed",
183184
"version_major": 2,
184185
"version_minor": 0
185186
},
@@ -193,8 +194,8 @@
193194
],
194195
"source": [
195196
"%matplotlib inline\n",
196-
"from IPython.html.widgets import interact, interactive, fixed\n",
197-
"from IPython.html.widgets import FloatSlider\n",
197+
"from ipywidgets import interact, interactive, fixed\n",
198+
"from ipywidgets import FloatSlider\n",
198199
"from math import cos, sin, pi, atan2, sqrt\n",
199200
"import numpy.linalg as linalg\n",
200201
"import matplotlib.pyplot as plt\n",
@@ -246,7 +247,7 @@
246247
{
247248
"data": {
248249
"application/vnd.jupyter.widget-view+json": {
249-
"model_id": "c8a6dc551eae4845beaae8da7b8f72b3",
250+
"model_id": "aee1320d4a0f431e8dd022e05a14f280",
250251
"version_major": 2,
251252
"version_minor": 0
252253
},
@@ -260,8 +261,8 @@
260261
],
261262
"source": [
262263
"%matplotlib inline\n",
263-
"from IPython.html.widgets import interact, interactive, fixed\n",
264-
"import IPython.html.widgets as widgets\n",
264+
"from ipywidgets import interact, interactive, fixed\n",
265+
"import ipywidgets as widgets\n",
265266
"import matplotlib.pyplot as plt\n",
266267
"import numpy as np\n",
267268
"import numpy.random as random\n",
@@ -318,7 +319,7 @@
318319
"name": "python",
319320
"nbconvert_exporter": "python",
320321
"pygments_lexer": "ipython3",
321-
"version": "3.7.12"
322+
"version": "3.9.7"
322323
}
323324
},
324325
"nbformat": 4,

0 commit comments

Comments
 (0)