粒子群优化算法求解最优路径我要分享

Particle swarm optimization algorithm for optimal path

schoolbck agreedng 粒子群优化最优路径 路径优化 columnlhw

关注次数: 361

下载次数: 2

文件大小: 9KB

代码分类: 智能算法

开发平台: matlab

下载需要积分: 1积分

版权声明:如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

代码描述

中文说明:

粒子群优化最优路径算法,和模拟退火算法相似,它也是从随机解出发,通过迭代寻找最优解,它也是通过适应度来评价解的品质,但它比遗传算法规则更为简单,它没有遗传算法的“交叉”(Crossover) 和“变异”(Mutation) 操作,它通过追随当前搜索到的最优值来寻找全局最优。


English Description:

Similar to simulated annealing algorithm, particle swarm optimization (PSO) optimal path algorithm starts from random solution and finds the optimal solution through iteration. It also evaluates the quality of the solution through fitness, but it is simpler than genetic algorithm. It does not have the "crossover" and "mutation" operation of genetic algorithm, It finds the global optimum by following the current optimal value


代码预览

粒子群优化算法求解最优路径\Arrange.m

粒子群优化算法求解最优路径\a_FCM_3.m

粒子群优化算法求解最优路径\ceshide.m

粒子群优化算法求解最优路径\floyed.m

粒子群优化算法求解最优路径\GenerateChangeNums.m

粒子群优化算法求解最优路径\HoldByOdds.m

粒子群优化算法求解最优路径\liziqun.m

粒子群优化算法求解最优路径\mtspf_ga.m

粒子群优化算法求解最优路径\mtsp_ga.m

粒子群优化算法求解最优路径\myLength.m

粒子群优化算法求解最优路径\PathDistance.m

粒子群优化算法求解最优路径\PathExchange.m

粒子群优化算法求解最优路径\PathPlot.m

粒子群优化算法求解最优路径

相关推荐