home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / business / nonlin22.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1993-02-18  |  828b  |  33 lines

  1. @echo off
  2. cls
  3. echo .
  4. echo       ----   Nonlin Example Regressions   ----
  5. echo .
  6. echo  This demo batch file runs several nonlinear regression analyses.
  7. echo  Press any key to resume execution after a plot is displayed.
  8. echo .
  9. echo  Fit an equation to the boiling point of water vs. air pressure...
  10. echo .
  11. pause
  12. nonlin boil
  13. cls
  14. echo Fit an equation to the temperature of a cooling object vs. time
  15. echo .
  16. pause
  17. nonlin cooling
  18. cls
  19. echo Fit an equation to the deflection of a compass needle vs. the
  20. echo distance of a magnet east of the compass.
  21. echo .
  22. pause
  23. nonlin magnet
  24. cls
  25. echo Fit an equation to data that approaches an asymptot.
  26. pause
  27. nonlin asymptot
  28. cls
  29. echo End of Nonlin demo file.
  30. echo Other demo analyses have the extension ".NLR".
  31. echo See the NONLIN.DOC file for additional information.
  32.  
  33.