home *** CD-ROM | disk | FTP | other *** search
/ Collection of Education / collectionofeducationcarat1997.iso / SCIENCE / ODE25.ZIP / EULER.ODE < prev    next >
Text File  |  1990-01-04  |  130b  |  9 lines

  1. # EULER.ODE
  2. # Exponential growth model.
  3.  
  4. # Set x initially to 1:
  5. x  = 1
  6.  
  7. # The rate of growth of x is equal to x:
  8. x' = x
  9.