代码搜索:Predator
找到约 158 项符合「Predator」的源代码
代码结果 158
www.eeworm.com/read/417736/10978218
m 例4-5.m
function yp = lotka(t,y)
% Lotka-Volterra predator-prey模型
global ALPHA BETA
yp = [y(1) - ALPHA*y(1)*y(2); -y(2) + BETA*y(1)*y(2)];
www.eeworm.com/read/460016/7259006
m 例4-5.m
function yp = lotka(t,y)
% Lotka-Volterra predator-prey模型
global ALPHA BETA
yp = [y(1) - ALPHA*y(1)*y(2); -y(2) + BETA*y(1)*y(2)];
www.eeworm.com/read/454809/7382689
m 例4-5.m
function yp = lotka(t,y)
% Lotka-Volterra predator-prey模型
global ALPHA BETA
yp = [y(1) - ALPHA*y(1)*y(2); -y(2) + BETA*y(1)*y(2)];
www.eeworm.com/read/194957/8182566
m 例4-5.m
function yp = lotka(t,y)
% Lotka-Volterra predator-prey模型
global ALPHA BETA
yp = [y(1) - ALPHA*y(1)*y(2); -y(2) + BETA*y(1)*y(2)];
www.eeworm.com/read/360770/10078759
m funf832.m
function dx = funf832(t,x)
%------------------------------------------------------------------
% Description: Predator-prey equations, Example 8.3.2
%----------------------------------------------
www.eeworm.com/read/419980/10824649
c dev_c7200_mpfpga.c
/*
* Cisco 7200 (Predator) simulation platform.
* Copyright (c) 2005,2006 Christophe Fillot (cf@utc.fr)
*
* Cisco C7200 (Predator) Midplane FPGA.
*/
#include
#include
#incl
www.eeworm.com/read/419980/10824827
c dev_c7200_iofpga.c
/*
* Cisco 7200 (Predator) simulation platform.
* Copyright (c) 2005,2006 Christophe Fillot (cf@utc.fr)
*
* Cisco C7200 (Predator) I/O FPGA:
* - Simulates a NMC93C46 Serial EEPROM as CPU and Mi
www.eeworm.com/read/419980/10825197
c dev_dec21x50.c
/*
* Cisco 7200 (Predator) simulation platform.
* Copyright (c) 2005,2006 Christophe Fillot (cf@utc.fr)
*
* Cisco C7200 (Predator) DEC21050/DEC21150 PCI bridges.
* This is just a fake device.
*
www.eeworm.com/read/304060/3803607
makefile
# makefile to compile the predator invariant analysis module and supporting classes
# and place the resulting .class files under /lib
# Author: Manos Papantoniou
### note that in the final vers
www.eeworm.com/read/304060/3803609
java predatorinvariantanalysis.java
/**
* Wrapper class to allow the predator Invariant Analysis module to be integrated with PIPE
* @author Manos Papantoniou
* @version March 2003
*/
package pipe.modules.predatorInvariantA