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