summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantosh G. Vattam2009-10-09 17:04:07 +0530
committerSantosh G. Vattam2009-10-09 17:04:07 +0530
commitfd0dae002e8c7d8ad9c7c46379e1ee6d32f7a948 (patch)
tree8bbc02177926401e1284a2c56a699bf0af732270
parent2a452637f55d9b2d79d1474faf8ca62f5b781221 (diff)
downloadworkshops-more-scipy-fd0dae002e8c7d8ad9c7c46379e1ee6d32f7a948.tar.gz
workshops-more-scipy-fd0dae002e8c7d8ad9c7c46379e1ee6d32f7a948.tar.bz2
workshops-more-scipy-fd0dae002e8c7d8ad9c7c46379e1ee6d32f7a948.zip
Made little changes to handout.tex.
-rw-r--r--day1/handout.tex5
1 files changed, 3 insertions, 2 deletions
diff --git a/day1/handout.tex b/day1/handout.tex
index a4f1c88..0bf9dc8 100644
--- a/day1/handout.tex
+++ b/day1/handout.tex
@@ -491,14 +491,14 @@ Try: \texttt{print enumerate(a)}
[ 0.0 , 0.5, 1.0 , 1.5, 2.0 , 2.5,
3.0 , 3.5, 4.0 , 4.5, 5.0 ]
\end{verbatim}
- \item[3.4a] Use the \texttt{linspace} function and generate a list of N tuples of the form\\
+ \item[3.4] Use the \texttt{linspace} function and generate a list of N tuples of the form\\
\texttt{[($x_1$,f($x_1$)),($x_2$,f($x_2$)),\ldots,($x_N$,f($x_N$))]}\\for the following functions,
\begin{itemize}
\item \texttt{f(x) = sin(x)}
\item \texttt{f(x) = sin(x) + sin(10*x)}.
\end{itemize}
-\item[3.4b] Using the tuples generated earlier, determine the intervals where the roots of the functions lie.
+\item[3.5] Using the tuples generated earlier, determine the intervals where the roots of the functions lie.
\end{description}
\section{IO}
@@ -510,6 +510,7 @@ for word in s.split():
print word.capitalize()
\end{verbatim}
+\section{Problem Set 4}
\begin{description}
\item[4.1] Given a string like, ``1, 3-7, 12, 15, 18-21'', produce the list\\
\texttt{[1,3,4,5,6,7,12,15,18,19,20,21]}