home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / EDUCATIO / ODE25.ZIP / EULER.ODE < prev    next >
Encoding:
Text File  |  1990-01-04  |  130 b   |  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.