代码搜索:Obstacles

找到约 93 项符合「Obstacles」的源代码

代码结果 93
www.eeworm.com/read/148834/12422503

m obstaclefunction.m

% Obstacle function: % Author: K. Passino, Version: 1/25/01 function J=obstaclefunction(x,w1) % An example function to represent sensed obstacles: J=... w1*max([exp(-0.8*((x(1,1)-20)^2+(x(2,1)-15
www.eeworm.com/read/134894/13971903

m obstaclefunction.m

% Obstacle function: % Author: K. Passino, Version: 1/25/01 function J=obstaclefunction(x,w1) % An example function to represent sensed obstacles: J=... w1*max([exp(-0.8*((x(1,1)-20)^2+(x(2,1)-15
www.eeworm.com/read/102397/15782814

h pursuer.h

/* Brian O'Connor * * pursuer.h: data structures for the pursuer problem */ #ifndef PURSUER_H #define PURSUER_H class EdgeInfo; class WorldInfo; class CellInfo; class VPoly; class PursuerGraph; c
www.eeworm.com/read/102397/15782824

h input.h

/* Brian O'Connor * * input.h: functions for reading and processing an input file * containing a list of obstacles */ #ifndef INPUT_H #define INPUT_H #define TRUE 1 #define FALSE 0 #define IN
www.eeworm.com/read/186325/8945300

java tour3d.java

// Tour3D.java // Andrew Davison, April 2005, ad@fivedots.coe.psu.ac.th /* Usual checkboard world but with: * extra scenery and obstacles - the scenery is loaded with PropManager o
www.eeworm.com/read/424058/10504280

java obstaclemanager.java

/*ObstacleManager.java : creates and manages obstacles */ import java.io.IOException; import javax.microedition.lcdui.*; import javax.microedition.lcdui.game.*; public class ObstacleManager {
www.eeworm.com/read/424057/10504309

java obstaclemanager.java

/*ObstacleManager.java : creates and manages obstacles */ import java.io.IOException; import javax.microedition.lcdui.*; import javax.microedition.lcdui.game.*; public class ObstacleManager {
www.eeworm.com/read/350131/10765101

m frontend.m

function varargout = frontend(varargin) % FRONTEND Application M-file for frontend.fig % FIG = FRONTEND launch frontend GUI. % FRONTEND('callback_name', ...) invoke the named callback. % Last M
www.eeworm.com/read/448413/7533759

m epstein_peterson.m

function [Ld,nu] = epstein_peterson(pos,h,n,lambda) % % function [Ld,nu] = epstein_peterson(pos,h,n,lambda) % It calculates the field for each path of the Epstein & Peterson model. % % pos :
www.eeworm.com/read/192822/8270278

java boid.java

// Boid.java // Andrew Davison, April 2005, ad@fivedots.coe.psu.ac.th // Sirinart Sakarin, March 2003, s4210315@calvin.coe.psu.ac.th /* A boid is: BG --> TG --> Shape3D - a Bra