资源简介
MATLAB粒子群算法工具箱,方便大家配置和使用,可以解决优化问题。pso是一种群智能方法的演化计算技术,系统初始化为一组随机解,通过迭代搜寻最优值。
代码片段和文件信息
% demopsobehavior.m
% demo of the pso.m function
% the pso tries to find the minimum of the f6 function a standard
% benchmark
%
% on the plots blue is current position green is Pbest and red is Gbest
% Brian Birge
% Rev 3.0
% 2/27/06
clear all
close all
clc
help demopsobehavior
warning off
functnames = {‘ackley‘‘alpine‘‘DeJong_f2‘‘DeJong_f3‘‘DeJong_f4‘...
‘Foxhole‘‘Griewank‘‘NDparabola‘...
‘Rastrigin‘‘Rosenbrock‘‘f6‘‘f6mod‘‘tripod‘...
‘f6_bubbles_dyn‘‘f6_linear_dyn‘‘f6_spiral_dyn‘};
disp(‘Static test functions minima don‘‘t change w.r.t. time/iteration:‘);
disp(‘ 1) Ackley‘);
disp(‘ 2) Alpine‘);
disp(‘ 3) DeJong_f2‘);
disp(‘ 4) DeJong_f3‘);
disp(‘ 5) DeJong_f4‘);
disp(‘ 6) Foxhole‘);
disp(‘ 7) Griewank‘);
disp(‘ 8) NDparabola (for this demo N = 2)‘);
disp(‘ 9) Rastrigin‘);
disp(‘10) Rosenbrock‘);
disp(‘11) Schaffer f6‘);
disp(‘12) Schaffer f6 modified (5 f6 functions translated from each other)‘);
disp(‘13) Tripod‘);
disp(‘ ‘);
disp(‘Dynamic test functions minima/environment evolves over time/iteration:‘);
disp(‘14) f6_bubbles_dyn‘);
disp(‘15) f6_linear_dyn‘);
disp(‘16) f6_spiral_dyn‘);
functchc=input(‘Choose test function ? ‘);
functname = functnames{functchc};
disp(‘ ‘);
disp(‘1) Intense graphics shows error topology and surfing particles‘);
disp(‘2) Default PSO graphing shows error trend and particle dynamics‘);
disp(‘3) no plot only final output shown fastest‘);
plotfcn=input(‘Choose plotting function ? ‘);
if plotfcn == 1
plotfcn = ‘goplotpso4demo‘;
shw = 1; % how often to update display
elseif plotfcn == 2
plotfcn = ‘goplotpso‘;
shw = 1; % how often to update display
else
plotfcn = ‘goplotpso‘;
shw = 0; % how often to update display
end
% set flag for ‘dynamic function on‘ only used at very end for tracking plots
dyn_on = 0;
if functchc==15 | functchc == 16 | functchc == 17
dyn_on = 1;
end
%xrng=input(‘Input search range for X e.g. [-1010] ? ‘);
%yrng=input(‘Input search range for Y ? ‘);
xrng=[-3030];
yrng=[-4040];
disp(‘ ‘);
% if =0 then we look for minimum =1 then max
disp(‘0) Minimize‘)
disp(‘1) Maximize‘)
minmax=input(‘Choose search goal ?‘);
% minmax=0;
disp(‘ ‘);
mvden = input(‘Max velocity divisor (2 is a good choice) ? ‘);
disp(‘ ‘);
ps = input(‘How many particles (24 - 30 is common)? ‘);
disp(‘ ‘);
disp(‘0) Common PSO - with inertia‘);
disp(‘1) Trelea model 1‘);
disp(‘2) Trelea model 2‘);
disp(‘3) Clerc Type 1“ - with constriction‘);
modl = input(‘Choose PSO model ? ‘);
% note: if errgoal=NaN then unconstrained min or max is performed
if minmax==1
% errgoal=0.97643183; % max for f6 function (close enough for termination)
errgoal=NaN;
else
% errgoal=0; % min
errgoal=NaN;
end
minx = xrng(1);
maxx = xrng(2);
miny = yrng(1);
maxy = yrng(2);
%----
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 741121 2019-03-07 09:44 PSOt\A Particle Swarm Optimization (PSO) Primer.pdf
文件 741121 2019-03-07 09:44 PSOt\A+Particle+Swarm+Optimization+%28PSO%29+Primer.pdf
文件 4862 2019-03-07 09:44 PSOt\DemoPSOBehavior.m
文件 5788 2019-03-07 09:44 PSOt\goplotpso.m
文件 4899 2019-03-07 09:44 PSOt\goplotpso4demo.m
目录 0 2019-03-07 09:44 PSOt\hiddenutils\
文件 172 2019-03-07 09:44 PSOt\hiddenutils\forcecol.m
文件 181 2019-03-07 09:44 PSOt\hiddenutils\forcerow.m
文件 749 2019-03-07 09:44 PSOt\hiddenutils\linear_dyn.m
文件 4588 2019-03-07 09:44 PSOt\hiddenutils\normmat.m
文件 841 2019-03-07 09:44 PSOt\hiddenutils\spiral_dyn.m
文件 1332 2019-03-07 09:44 PSOt\license.txt
目录 0 2019-03-07 09:44 PSOt\nnet\
文件 1857 2019-03-07 09:44 PSOt\nnet\demoPSOnet.m
文件 7808 2019-03-07 09:44 PSOt\nnet\goplotpso4net.m
文件 836 2019-03-07 09:44 PSOt\nnet\pso_neteval.m
文件 11664 2019-03-07 09:44 PSOt\nnet\trainpso.m
文件 22223 2019-03-07 09:44 PSOt\pso_Trelea_vectorized.m
文件 4387 2019-03-07 09:44 PSOt\ReadME.txt
目录 0 2019-03-07 09:44 PSOt\testfunctions\
文件 871 2019-03-07 09:44 PSOt\testfunctions\ackley.m
文件 639 2019-03-07 09:44 PSOt\testfunctions\alpine.m
文件 732 2019-03-07 09:44 PSOt\testfunctions\DeJong_f2.m
文件 506 2019-03-07 09:44 PSOt\testfunctions\DeJong_f3.m
文件 1004 2019-03-07 09:44 PSOt\testfunctions\DeJong_f4.m
文件 314 2019-03-07 09:44 PSOt\testfunctions\f6.m
文件 1510 2019-03-07 09:44 PSOt\testfunctions\f6_bubbles_dyn.m
文件 617 2019-03-07 09:44 PSOt\testfunctions\f6_linear_dyn.m
文件 872 2019-03-07 09:44 PSOt\testfunctions\f6_spiral_dyn.m
文件 700 2019-03-07 09:44 PSOt\testfunctions\f6mod.m
文件 1278 2019-03-07 09:44 PSOt\testfunctions\Foxhole.m
............此处省略5个文件信息
相关资源
- 基于MATLAB GUI的数字图像处理仿真平台
- MATLAB 车牌识别
- MATLAB图像检索123605
- Matlab经典教程——从入门到精通(原
- 纠错编码原理及MATLAB实现-刘爱莲课件
- HVAC系统——trnsys
- matlab下亚像素提取算法
- 基于MATLAB的超分辨率重建算法,亲测
- 目标跟踪算法KCF融合HOG+CN特征,matl
- 基于PCA算法实现人脸识别完整代码文
- UPS仿真报告matlab
- matlab3D表面与体绘制数据及代码
- 图像配准程序matlab
- Matlab Neural Network Toolbox documentation.pd
- Robotics工具箱用户手册
- 极限学习机matlab代码
- 带操作界面GUI的字母识别-MATLAB程序
- 太阳高度角方位角高精度matlab计算代
- meanshift分割算法的matlab实现,完整标
- 最小二乘支持向量机matlab程序+使用教
- 高阶统计量matlab工具包
- matlab经典图片实验用
- 集合卡尔曼滤波算法-数据同化的经典
- MATLAB.遗传算法和粒子群算法程序设计
- 三电平逆变器的SVPWM控制与MATLAB仿真研
- matlab 去除人脸图像中的雀斑,人脸美
- Qt5.9 VS2017 Matlab2018b工程
- 图像分割源代码(Matlab)
-
MATLAB/Simuli
nk for Digital Communication - 使用 Matlab 生成可供 DSP C6748 使用的算
评论
共有 条评论