diff options
author | Puneeth Chaganti | 2009-11-20 00:05:50 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2009-11-20 00:05:50 +0530 |
commit | cc482d07bb1cf118457926a07fb3e57535ca11aa (patch) | |
tree | 88f285a692b3bef9fb04a2be668a6a11c7007d51 /day1/session6.tex | |
parent | 9ba6138658042f53635f7c5f3e8473c146a81008 (diff) | |
download | workshops-cc482d07bb1cf118457926a07fb3e57535ca11aa.tar.gz workshops-cc482d07bb1cf118457926a07fb3e57535ca11aa.tar.bz2 workshops-cc482d07bb1cf118457926a07fb3e57535ca11aa.zip |
Minor edits to sessions 2, 4, 6 on day1.
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) |