day1/cheatsheet6.tex
changeset 328 4075482a9770
parent 324 2361df479844
child 330 46533051b9d3
child 340 347ff2714deb
equal deleted inserted replaced
327:c78cad28c2f7 328:4075482a9770
   127 In []: y = odeint(f, y0, t)
   127 In []: y = odeint(f, y0, t)
   128 \end{lstlisting}
   128 \end{lstlisting}
   129 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.
   129 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.
   130 \section{Links and References}
   130 \section{Links and References}
   131 \begin{itemize}
   131 \begin{itemize}
   132 \item Documentation for Numpy and Scipy is available at: \url{http://docs.scipy.org/doc/}
   132 \item Documentation for Numpy and Scipy is available at:\\ http://docs.scipy.org/doc/
   133   \item For "recipes" or worked examples of commonly-done tasks in SciPy explore: \url{http://www.scipy.org/Cookbook/}
   133   \item For "recipes" or worked examples of commonly-done tasks in SciPy explore: \\ http://www.scipy.org/Cookbook/
   134 \end{itemize}
   134 \end{itemize}
   135 \end{document}
   135 \end{document}