home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / maj / 4352 / demo.bat < prev    next >
DOS Batch File  |  1994-03-09  |  1KB  |  48 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 a logistic curve to the AIDS infection rate in the USA
  10. echo .
  11. pause
  12. nonlin aids
  13. cls
  14. echo Fit an equation to data including a sine term.
  15. pause
  16. nonlin trend
  17. cls
  18. echo Fit an equation to the temperature of a cooling object vs. time
  19. echo .
  20. pause
  21. nonlin cooling
  22. cls
  23. echo Fit an equation to the deflection of a compass needle vs. the
  24. echo distance of a magnet east of the compass.
  25. echo .
  26. pause
  27. nonlin magnet
  28. cls
  29. echo Fit a line with a bend in the middle to some data
  30. echo .
  31. pause
  32. nonlin piece
  33. cls
  34. echo Fit a sine series to a square wave
  35. echo .
  36. pause
  37. nonlin square
  38. cls
  39. echo Fit a parabola to some data points
  40. echo .
  41. pause
  42. nonlin parabola
  43. cls
  44. echo End of Nonlin demo file.
  45. echo Other demo analyses have the extension ".NLR".
  46. echo See the NONLIN.DOC file for additional information.
  47.  
  48.