home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
MATH
/
NONLIN31.ZIP
/
DEMO.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-03-09
|
1KB
|
48 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 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 Fit a line with a bend in the middle to some data
echo .
pause
nonlin piece
cls
echo Fit a sine series to a square wave
echo .
pause
nonlin square
cls
echo Fit a parabola to some data points
echo .
pause
nonlin parabola
cls
echo End of Nonlin demo file.
echo Other demo analyses have the extension ".NLR".
echo See the NONLIN.DOC file for additional information.