home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
educmath
/
nonlin
/
demo.bat
< prev
next >
Wrap
DOS Batch File
|
1993-06-14
|
918b
|
38 lines
@echo off
cls
echo .
echo ---- Nonlin Example Regressions ----
echo .
echo This demo batch file runs several nonlinear regression analyses.
echo Press any key to resume execution after a plot is displayed.
echo .
echo Fit a logistic curve to the AIDS infection rate in the USA
echo .
pause
nonlin aids
cls
echo Fit an equation to the boiling point of water vs. air pressure...
echo .
pause
nonlin boil
cls
echo Fit an equation to data including a sine term.
pause
nonlin trend
cls
echo Fit an equation to the temperature of a cooling object vs. time
echo .
pause
nonlin cooling
cls
echo Fit an equation to the deflection of a compass needle vs. the
echo distance of a magnet east of the compass.
echo .
pause
nonlin magnet
cls
echo End of Nonlin demo file.
echo Other demo analyses have the extension ".NLR".
echo See the NONLIN.DOC file for additional information.