view_history.m
来自「多智能体工具包」· M 代码 · 共 35 行
M
35 行
% VIEW_HISTORY Draw the history of the experiments.% Copyright (c) 1997-2000 Jiming Liu and Jianbing Wuclose all;clear all;%FLname='f1_2';FLname='f1_2f2_2f6_4'; %FLname='f2_1'; %FLname='f6_2'; Max_Age=100;Loop_Inc=5;Robot_Num=3;eval(['load ' FLname ';']); % load the DATAfigHistory=figure(... 'Color',[0 0 0],... 'Position',[300 200 600 500],... 'Resize','off',... 'NumberTitle','off',... 'Name','Distribution Show');for mm=0:Max_Age % 0 --> Max_Age CELL=New_History(mm*Loop_Inc+1:(mm+1)*Loop_Inc,:); CELL(:,3)=[]; plotcell(CELL,mm); pause;end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?