drawswarm.m

来自「用matlab开发的微粒群算法工具箱」· M 代码 · 共 29 行

M
29
字号
%DrawSwarm >> Internal function of psotoolbox.
% Purpose: To draw a visual display of the Swarm.
% 
% You shouldn't need to mess around with this fn. if u don't wanna change the visualization.
% 
% see also: pso.m
%
function DrawSwarm(Swarm, SwarmSize, Generation, Dimensions, GBest, vizAxes)
X = Swarm';
if Dimensions >= 3
    set(vizAxes,'XData',X(1, :),'YData', X(2,:), 'ZData', X(3,:));
elseif Dimensions == 2
    set(vizAxes,'XData',X(1, :),'YData', X(2,:));
end

GenDiv = 100;
xAx = GBest(1);
yAx = GBest(2);
zAx = GBest(2);

zf = 100 * 50/Generation; %zoom factor

if rem(Generation, GenDiv) == 0
    axis([xAx-zf xAx+100 yAx-zf yAx+zf zAx-zf zAx+zf]);
end

title(Generation);
drawnow;

⌨️ 快捷键说明

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