diff options
author | Puneeth Chaganti | 2009-11-20 00:42:56 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2009-11-20 00:42:56 +0530 |
commit | 3cc84d3d4006d182fa27392db2f588855efafe35 (patch) | |
tree | 499be871af64e3039bbe0f4c017c4c251821efb8 /day1 | |
parent | fa658fde8a20ded33eed701c5fa17231360a3c69 (diff) | |
parent | f6423f4ed21b03dd08d54441af8ff50efc12bd48 (diff) | |
download | workshops-more-scipy-3cc84d3d4006d182fa27392db2f588855efafe35.tar.gz workshops-more-scipy-3cc84d3d4006d182fa27392db2f588855efafe35.tar.bz2 workshops-more-scipy-3cc84d3d4006d182fa27392db2f588855efafe35.zip |
Merged heads manually.
Diffstat (limited to 'day1')
-rwxr-xr-x | day1/cheatsheet6.tex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/day1/cheatsheet6.tex b/day1/cheatsheet6.tex index ee988f6..c4919b0 100755 --- a/day1/cheatsheet6.tex +++ b/day1/cheatsheet6.tex @@ -127,4 +127,9 @@ To solve the ODE, we call the \typ{odeint} function with three arguments - the f In []: y = odeint(f, y0, t) \end{lstlisting} 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/} +\end{itemize} \end{document} |