diff --git a/lectures/functions.md b/lectures/functions.md index 75d78e8b..9ebe170b 100644 --- a/lectures/functions.md +++ b/lectures/functions.md @@ -45,9 +45,10 @@ One of the things we will learn to do is build our own user-defined functions We will use the following imports. ```{code-cell} ipython +%matplotlib inline import numpy as np import matplotlib.pyplot as plt -%matplotlib inline +plt.rcParams['figure.figsize'] = (10,6) ``` ## Function Basics