Skip to content

Commit a89fcad

Browse files
committed
Switch order of imports
1 parent 1bb1d6a commit a89fcad

3 files changed

+7
-5
lines changed

00_intro_numerical_methods.ipynb

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@
2525
"outputs": [],
2626
"source": [
2727
"from __future__ import print_function\n",
28+
"\n",
29+
"%matplotlib inline\n",
2830
"import numpy\n",
29-
"import matplotlib.pyplot as plt\n",
30-
"%matplotlib inline"
31+
"import matplotlib.pyplot as plt"
3132
]
3233
},
3334
{

04_error.ipynb

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"outputs": [],
2626
"source": [
2727
"from __future__ import print_function\n",
28-
"from __future__ import absolute_import\n",
2928
"\n",
3029
"%matplotlib inline\n",
3130
"import numpy\n",
@@ -1737,7 +1736,7 @@
17371736
"name": "python",
17381737
"nbconvert_exporter": "python",
17391738
"pygments_lexer": "ipython3",
1740-
"version": "3.7.0"
1739+
"version": "3.7.1"
17411740
},
17421741
"latex_envs": {
17431742
"bibliofile": "biblio.bib",

05_root_finding_optimization.ipynb

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
},
2525
"outputs": [],
2626
"source": [
27+
"from __future__ import print_function\n",
28+
"\n",
2729
"%matplotlib inline\n",
2830
"import numpy\n",
2931
"import matplotlib.pyplot as plt"
@@ -2379,7 +2381,7 @@
23792381
"name": "python",
23802382
"nbconvert_exporter": "python",
23812383
"pygments_lexer": "ipython3",
2382-
"version": "3.7.0"
2384+
"version": "3.7.1"
23832385
},
23842386
"latex_envs": {
23852387
"bibliofile": "biblio.bib",

0 commit comments

Comments
 (0)