# pp_disc.ode # discrete predator prey model # from the AUTO manual u'=a*u*(1-u)-b*v*u v'=(1-c)*v+b*u*v par a=0,b=.2,c=.1 @ meth=discrete,total=100 done