antprogn3.m

来自「遗传规划的matlab工具箱」· M 代码 · 共 26 行

M
26
字号
function ntime=antprogn3(action1,action2,action3)
%ANTPROGN3    Executes three actions of the GPLAB artificial ant.
%   ANTPROGN2 executes ACTION1 followed by ACTION2 followed by ACTION3.
%   Returns the number of the time step used by the ant after all
%   actions. Other variables are returned as global variables.
%
%   Output arguments:
%      NTIME - the number of the current time step used by the ant (double)
%
%   See also ANTFITNESS, ANTFOODAHEAD, ANTMOVE, ANTRIGHT, ANTLEFT, ANTIF, ANTPROGN2
%
%   Copyright (C) 2003-2004 Sara Silva (sara@dei.uc.pt)
%   This file is part of the GPLAB Toolbox

global trail;
global x;
global y;
global direction;
global npellets;
global maxtime;
global ntime;

action1;
action2;
action3;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?