Skip to content

Commit be49ecc

Browse files
-Working through GH filters
-Add rule in gitignore to ignore my python venv
1 parent 04b2bea commit be49ecc

File tree

3 files changed

+84
-35
lines changed

3 files changed

+84
-35
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ Kalman_and_Bayesian_Filters_in_Python6x9.pdf
1414
Kalman_and_Bayesian_Filters_in_Python.pdf
1515
book_files
1616
tmp
17-
.pylint.d
17+
.pylint.d
18+
venv*

00-Preface.ipynb

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@
9999
{
100100
"cell_type": "markdown",
101101
"metadata": {
102-
"collapsed": true
102+
"collapsed": true,
103+
"jupyter": {
104+
"outputs_hidden": true
105+
}
103106
},
104107
"source": [
105108
"## Motivation for this Book\n",
@@ -793,11 +796,21 @@
793796
},
794797
{
795798
"cell_type": "code",
796-
"execution_count": 20,
799+
"execution_count": 7,
797800
"metadata": {},
798-
"outputs": [],
801+
"outputs": [
802+
{
803+
"name": "stdout",
804+
"output_type": "stream",
805+
"text": [
806+
"[0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1]\n"
807+
]
808+
}
809+
],
799810
"source": [
800-
"# your solution"
811+
"# your solution\n",
812+
"arr = np.array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,])\n",
813+
"print(arr)"
801814
]
802815
},
803816
{
@@ -973,7 +986,7 @@
973986
"name": "python",
974987
"nbconvert_exporter": "python",
975988
"pygments_lexer": "ipython3",
976-
"version": "3.9.7"
989+
"version": "3.10.12"
977990
},
978991
"nbdime-conflicts": {
979992
"local_diff": [
@@ -1028,5 +1041,5 @@
10281041
}
10291042
},
10301043
"nbformat": 4,
1031-
"nbformat_minor": 1
1044+
"nbformat_minor": 4
10321045
}

01-g-h-filter.ipynb

Lines changed: 63 additions & 28 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)