home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / demo / ode.zoo / 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.