home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
SCIENCE
/
ODE25.ZIP
/
AIRY.ODE
next >
Wrap
Text File
|
1990-01-04
|
199b
|
17 lines
# AIRY.ODE
# Airy differential equation
# Plot y against x.
# Use 4th order Runge-Kutta, auto step size
$m 4
# Solve to 20
$t 20
x = 0
y = 1
z = -1
x' = 1
y' = z
z' = -x*y