diff options
Diffstat (limited to 'day1/session6.tex')
-rwxr-xr-x | day1/session6.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/session6.tex b/day1/session6.tex index acfc687..0f1523e 100755 --- a/day1/session6.tex +++ b/day1/session6.tex @@ -328,7 +328,7 @@ In []: def epid(y, t): \begin{frame}[fragile] \frametitle{Solving ODEs using SciPy \ldots} \begin{lstlisting} -In []: t = arange(0, 12, 0.2) +In []: t = linspace(0, 12, 61) In []: y = odeint(epid, 250, t) |