登录 注册
当前位置:主页 > 资源下载 > 9 > MATLAB程序下的智能微粒群算法

MATLAB程序下的智能微粒群算法

  • 更新:2024-05-19 09:59:56
  • 大小:6KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:C - 后端
  • 格式:NONE

资源介绍

%%#################################################################### %%#### Particle swarm optimization %%#### With linkage operator %%#### Deepak devicharan july 2003 %%#################################################################### %%## to apply this to different equations do the following %%## generate initial particles in a search space close to actual soln %%## fool around with no of iterations, no of particles, learning rates %%## for a truly generic PSO do the following %%## increase the number of particles , increase the variance %%## i.e let the particles cover a larger area of the search space %%## then fool around as always with the above thins %declare the parameters of the optimization max_iterations = 1000; no_of_particles = 50; dimensions = 1; delta_min = -0.003; delta_max = 0.003; c1 = 1.3; c2 = 1.3;