summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantosh G. Vattam2010-04-19 15:21:07 +0530
committerSantosh G. Vattam2010-04-19 15:21:07 +0530
commit12ee38c58a9be12c4ac8cafdf8ee34d4e573250c (patch)
tree90f28e20dd1e99ba8c888cb17378b1cbe59a37e9
parent3d6f943548c5ba17b6146853ac5faa585a74f28f (diff)
downloadst-scripts-12ee38c58a9be12c4ac8cafdf8ee34d4e573250c.tar.gz
st-scripts-12ee38c58a9be12c4ac8cafdf8ee34d4e573250c.tar.bz2
st-scripts-12ee38c58a9be12c4ac8cafdf8ee34d4e573250c.zip
Minor edits.
-rw-r--r--odes.org9
1 files changed, 6 insertions, 3 deletions
diff --git a/odes.org b/odes.org
index 06d8ba5..722febf 100644
--- a/odes.org
+++ b/odes.org
@@ -10,7 +10,9 @@
Welcome friends.
In this tutorial we shall look at solving Ordinary Differential Equations,
- ODE henceforth using odeint in Python.
+ ODE henceforth using odeint in Python. In this tutorial we shall be using
+ the concepts of arrays, functions and lists which we have covered in various
+ previous tutorials.
Let's consider the classic problem of the spread of an epidemic in a
population.
@@ -19,7 +21,7 @@
problem Let us use L=25000, k=0.00003.
Let the boundary condition be y(0)=250.
- Lets fire up IPython by typing ipython -pylab interpreter.
+ Let's now fire up IPython by typing ipython -pylab interpreter.
As we saw in one of earlier session, sometimes pylab wont 'import' all
packages. For solving 'ordinary differential equations' also we shall
@@ -122,6 +124,7 @@
in the slide.
Thus we come to the end of this tutorial on solving ordinary differential
- equations in Python. In this tutorial we have learnt,
+ equations in Python. In this tutorial we have learnt how to solve ordinary
+ differential equations of first and second order.
*** Notes