# the famous Lorenz equation set up for 3d view
init x=-7.5  y=-3.6  z=30 
par s=10  b=2.66666  r=27 
x'=s*(-x+y)
y'=r*x-y-x*z
z'=-b*z+x*y
@ dt=.001, total=40, xplot=x,yplot=y
@ xlo=-30,ylo=-30,xhi=30,yhi=30
@ maxstor=2000000
done