home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 10
/
10.iso
/
l
/
l460
/
3.ddi
/
DEMOS.DI$
/
LOTKA.M
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1993-03-07
|
167 b
|
7 lines
function yp = lotka(t,y)
%LOTKA Lotka-Volterra predator-prey model.
% Copyright (c) 1984-93 by The MathWorks, Inc.
yp = diag([1 - .01*y(2), -1 + .02*y(1)])*y;