Location:
Search - acatsp
Search list
Description: It s a word document,matlab code,basic algorithm of ant colony.-It's a word document, Matlab code, basic algorithm of ant colony.
Platform: |
Size: 1920 |
Author: lidi |
Hits:
Description: 通用的蚁群算法,这个算法可以高效地解决tsp问题
Platform: |
Size: 2245 |
Author: xiaofei |
Hits:
Description: 一个蚁群算法的matlab源程序,置入matlab目录后即可直接调用(附蚁群算法简介)
Platform: |
Size: 41548 |
Author: zmx8901 |
Hits:
Description: 一个简单的TSP算法程序,使用退火算法,计算最短路径的问题,供学习
Platform: |
Size: 1778 |
Author: qq |
Hits:
Description: 用于解决旅行商问题,程序解决在31个城市寻找最短路径。
Platform: |
Size: 1446 |
Author: 赵开伟 |
Hits:
Description: 利用蚂蚁算法思想,求解旅行商问题!思路清晰,有注解,适合初学者学习!
Platform: |
Size: 4560 |
Author: 罗根 |
Hits:
Description: 蚁群算法在TSP问题上的应用,一个小程序,仅供参考。
Platform: |
Size: 1664 |
Author: 唯心 |
Hits:
Description: 蚁群算法Matlab编程(仿真通过)
Platform: |
Size: 4646 |
Author: nifeng |
Hits:
Description: It s a word document,matlab code,basic algorithm of ant colony.-It's a word document, Matlab code, basic algorithm of ant colony.
Platform: |
Size: 2048 |
Author: lidi |
Hits:
Description: 通用的蚁群算法,这个算法可以高效地解决tsp问题-Common ant colony algorithm, this algorithm can efficiently solve the problem tsp
Platform: |
Size: 2048 |
Author: xiaofei |
Hits:
Description: 一个蚁群算法的matlab源程序,置入matlab目录后即可直接调用(附蚁群算法简介)-An ant colony algorithm matlab source, placed directly after the directory matlab call (with Ant Colony Algorithm Introduction)
Platform: |
Size: 41984 |
Author: zmx8901 |
Hits:
Description: 一个简单的TSP算法程序,使用退火算法,计算最短路径的问题,供学习-A simple TSP algorithm, the use of annealing algorithm to calculate the shortest path problem, for learning
Platform: |
Size: 1024 |
Author: |
Hits:
Description:
Platform: |
Size: 1024 |
Author: 赵开伟 |
Hits:
Description: 利用蚂蚁算法思想,求解旅行商问题!思路清晰,有注解,适合初学者学习!-Thinking of the use of ant algorithm to solve traveling salesman problem! Clear lines of thought, have comments, suitable for beginners to learn!
Platform: |
Size: 4096 |
Author: 罗根 |
Hits:
Description: 蚁群算法在TSP问题上的应用,一个小程序,仅供参考。-Ant colony algorithm in the TSP on the issue of applications, a small procedure, for reference purposes only.
Platform: |
Size: 1024 |
Author: 唯心 |
Hits:
Description: 蚁群算法的MATLAB程序,提供变量初始化
C=[1304 2312 3639 1315 4177 2244 3712 1399 3488 1535 3326 1556 3238 1229 4196 1004 4312 790 4386 570 3007 1970 2562 1756 2788 1491 2381 1676 1332 695 3715 1678 3918 2179 4061 2370 3780 2212 3676 2578 4029 2838 4263 2931 3429 1908 3507 2367 3394 2643 3439 3201 2935 3240 3140 3550 2545 2357 2778 2826 2370 2975]
m=31
Alpha=1 Beta=5 Rho=0.9 Q=100
NC_max=200 -Ant colony algorithm of MATLAB procedures, initialize the variable C = [1304 2312 3639 1315 4177 2244 3712 1399 3488 1535 3326 1556 3238 1229 4196 1004 4312 790 4386 570 3007 1970 2562 1756 2788 1491 2381 1676 1332 695 3715 1678 3918 2179 4061 2370 3780 2212 3676 2578 4029 2838 4263 2931 3429 1908 3507 2367 3394 2643 3439 3201 2935 3240 3140 3550 2545 2357 2778 2826 2370 2975] m = 31 Alpha = 1 Beta = 5 Rho = 0.9 Q = 100 NC_max = 200
Platform: |
Size: 2048 |
Author: xiaofei |
Hits:
Description: 实现了蚁群算法求解TSP问题。注释详细
function[R_best,L_best,L_ave,Shortest_Route,Shortest_Length]=ACATSP(C,NC_max,m,Alpha,Beta,Rho,Q)
-------------------------------------------------------------------------
主要符号说明
C n个城市的坐标,n×2的矩阵
NC_max最大迭代次数
m蚂蚁个数
Alpha表征信息素重要程度的参数
Beta表征启发式因子重要程度的参数
Rho信息素蒸发系数
Q信息素增加强度系数
R_best各代最佳路线
L_best各代最佳路线的长度
=========================================================================
-Ant Colony Algorithm for the realization of the TSP problem. Notes the detailed function [R_best, L_best, L_ave, Shortest_Route, Shortest_Length] = ACATSP (C, NC_max, m, Alpha, Beta, Rho, Q) ------------------------------------------------------------------- The main symbol------ C n that cities coordinates, n × 2 matrix NC_max the largest number of iterations m the number of Alpha ant pheromones characterized the importance of the parameters Beta factor heuristic importance of characterization of the parameters Rho evaporation coefficient of pheromone pheromone Q increase in intensity coefficient R_best best route generations generations L_best the length of the best route ====== ================================================== =================
Platform: |
Size: 2048 |
Author: 王晶 |
Hits:
Description: 用蚂蚁算法智能的解决大规模TSP问题,有大量测试用例,图形化的展示运行过程。-Intelligent use of ant algorithm to solve large-scale TSP problem, a large number of test cases, graphical display of running.
Platform: |
Size: 9216 |
Author: li |
Hits:
Description: 蚁群算法MATLAB文件 function文件-ACATSP.m
Ant Colony Algorithm for Traveling Salesman Problem
Platform: |
Size: 1024 |
Author: Javen |
Hits:
Description: 这是一个ACATSP算法希望能够帮助您,不喜勿喷-This is a tool about ACA
Platform: |
Size: 2048 |
Author: bin |
Hits: