@@ -70,14 +70,15 @@ The plots will be grouped into three subfigures.
|
70 | 70 | In each subfigure, two parameters are held fixed while another varies |
71 | 71 | |
72 | 72 | ```{code-cell} ipython |
| 73 | +%matplotlib inline |
73 | 74 | import numpy as np |
74 | 75 | import matplotlib.pyplot as plt |
75 | | -%matplotlib inline |
| 76 | +plt.rcParams['figure.figsize'] = (10,6) |
76 | 77 | |
77 | 78 | # Allocate memory for time series |
78 | 79 | k = np.empty(50) |
79 | 80 | |
80 | | -fig, axes = plt.subplots(3, 1, figsize=(6, 14)) |
| 81 | +fig, axes = plt.subplots(3, 1, figsize=(8, 16)) |
81 | 82 | |
82 | 83 | # Trajectories with different α |
83 | 84 | δ = 0.1 |
@@ -267,7 +268,7 @@ def plot_path(ax, αs, s_vals, δs, time_series_length=50):
|
267 | 268 | ax.set_ylim(0, 18) |
268 | 269 | ax.legend(loc='upper left', frameon=True) |
269 | 270 | |
270 | | -fig, axes = plt.subplots(3, 1, figsize=(6, 14)) |
| 271 | +fig, axes = plt.subplots(3, 1, figsize=(8, 16)) |
271 | 272 | |
272 | 273 | # Parameters (αs, s_vals, δs) |
273 | 274 | set_one = ([0.25, 0.33, 0.45], [0.4], [0.1]) |
|