⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adaptbest3.m

📁 该程序是一整数版的PSO程序。该程序对于整数版PSO的各种应用可作为模板程序。
💻 M
字号:
% 更新个体、群体的最优位置和适应值
function [pbestx,pbesty,gbestx,gbesty]=adaptbest3(popsize,x,y,pbestx,pbesty,gbestx,gbesty)
%
%
%
for popindex=1:popsize
    if y(popindex)<pbesty(popindex)
       pbestx(popindex,:)=x(popindex,:);
       pbesty(popindex)=y(popindex);
    end
    if y(popindex)<gbesty
       gbestx=x(popindex,:);
       gbesty=y(popindex);
     end
 end

⌨️ 快捷键说明

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