diff options
author | Santosh G. Vattam | 2009-12-08 12:40:07 +0530 |
---|---|---|
committer | Santosh G. Vattam | 2009-12-08 12:40:07 +0530 |
commit | 57e8c51be346136618b330454243469699e836e7 (patch) | |
tree | 0a8c9063d0992a269e45c7238177020ff1346565 /day1 | |
parent | 968e52e6a7291a2a125243397bb25b26fffce4c7 (diff) | |
download | workshops-57e8c51be346136618b330454243469699e836e7.tar.gz workshops-57e8c51be346136618b330454243469699e836e7.tar.bz2 workshops-57e8c51be346136618b330454243469699e836e7.zip |
Minor edits to remove errors.
Diffstat (limited to 'day1')
-rwxr-xr-x | day1/cheatsheet1.tex | 8 | ||||
-rwxr-xr-x | day1/cheatsheet4.tex | 2 | ||||
-rwxr-xr-x | day1/cheatsheet6.tex | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/day1/cheatsheet1.tex b/day1/cheatsheet1.tex index 12edd5e..29aa60f 100755 --- a/day1/cheatsheet1.tex +++ b/day1/cheatsheet1.tex @@ -79,7 +79,7 @@ Same way one can have TeX expression on xlabel, ylabel etc. \subsection{legends} \typ{In []: legend('sin(x)',loc=center)} \\ Placec a legend on the current plot at location *loc*.\\ -Apart from \kwrd{center}, some other \kwrd{loc} which can be specified are: +Apart from \typ{center}, some other \typ{loc} which can be specified are: \begin{lstlisting} 'best' 'right' @@ -143,9 +143,9 @@ In []: close() \section{References} \begin{itemize} - \item For documentation on IPython refer: \\ \url{http://ipython.scipy.org/moin/Documentation} - \item Plotting(matplotlib) related documentation are available at:\\ \url{http://matplotlib.sourceforge.net/contents.html} - \item Explore examples and plots based on matplotlib at \\ \url{http://matplotlib.sourceforge.net/examples/index.html} + \item For documentation on IPython refer: \\ http://ipython.scipy.org/moin/Documentation + \item Plotting(matplotlib) related documentation are available at:\\ http://matplotlib.sourceforge.net/contents.html + \item Explore examples and plots based on matplotlib at \\ http://matplotlib.sourceforge.net/examples/index.html \end{itemize} \end{document} diff --git a/day1/cheatsheet4.tex b/day1/cheatsheet4.tex index d7e8327..d04609a 100755 --- a/day1/cheatsheet4.tex +++ b/day1/cheatsheet4.tex @@ -52,7 +52,7 @@ array([[ 1, 1, 2], In []: C[1,2] Out[]: 1 \end{lstlisting} -Two indexes seperated by \typ{','} specifies [row, column]. So \kwrd{C[1,2]} gets third element of second row(indices starts from 0). +Two indexes seperated by \typ{','} specifies [row, column]. So \typ{C[1,2]} gets third element of second row(indices starts from 0). \newpage \begin{lstlisting} In []: C[1] diff --git a/day1/cheatsheet6.tex b/day1/cheatsheet6.tex index c4919b0..5dacecc 100755 --- a/day1/cheatsheet6.tex +++ b/day1/cheatsheet6.tex @@ -129,7 +129,7 @@ In []: y = odeint(f, y0, t) Note: To solve a system of ODEs, we need to change the function to return the right hand side of all the equations and the system and the pass the required number of initial conditions to the \typ{odeint} function. \section{Links and References} \begin{itemize} -\item Documentation for Numpy and Scipy is available at: \url{http://docs.scipy.org/doc/} - \item For "recipes" or worked examples of commonly-done tasks in SciPy explore: \url{http://www.scipy.org/Cookbook/} +\item Documentation for Numpy and Scipy is available at:\\ http://docs.scipy.org/doc/ + \item For "recipes" or worked examples of commonly-done tasks in SciPy explore: \\ http://www.scipy.org/Cookbook/ \end{itemize} \end{document} |