登录
首页 » matlab » 遗传模拟退火算法求解TSP问题matlab代码

遗传模拟退火算法求解TSP问题matlab代码

于 2020-12-22 发布
0 194
下载积分: 1 下载次数: 10

代码说明:

说明:  解决车辆路径问题,改进的模拟退火和遗传算法,全面详细,适用于解决VRP问题和物流车辆规划(To solve the vehicle routing problem, the improved simulated annealing and genetic algorithm, comprehensive and detailed, suitable for solving VRP problems and logistics vehicle planning)

文件列表:

遗传模拟退火算法求解TSP问题matlab代码\BinaryTourment_Select.m, 1315 , 2020-07-31
遗传模拟退火算法求解TSP问题matlab代码\Fitness.m, 238 , 2020-05-10
遗传模拟退火算法求解TSP问题matlab代码\InitPop.m, 365 , 2020-07-31
遗传模拟退火算法求解TSP问题matlab代码\input.txt, 649 , 2020-06-13
遗传模拟退火算法求解TSP问题matlab代码\Insertion.m, 553 , 2020-04-25
遗传模拟退火算法求解TSP问题matlab代码\main.m, 82 , 2020-06-13
遗传模拟退火算法求解TSP问题matlab代码\Mutate.m, 803 , 2020-05-10
遗传模拟退火算法求解TSP问题matlab代码\Neighbor.m, 555 , 2020-04-25
遗传模拟退火算法求解TSP问题matlab代码\ObjFunction.m, 520 , 2020-05-10
遗传模拟退火算法求解TSP问题matlab代码\OX.m, 767 , 2020-07-31
遗传模拟退火算法求解TSP问题matlab代码\PlotRoute.m, 299 , 2020-04-25
遗传模拟退火算法求解TSP问题matlab代码\Recombin.m, 350 , 2020-03-24
遗传模拟退火算法求解TSP问题matlab代码\Reins.m, 324 , 2020-05-13
遗传模拟退火算法求解TSP问题matlab代码\Reversion.m, 459 , 2020-04-25
遗传模拟退火算法求解TSP问题matlab代码\Roulette.m, 401 , 2020-07-31
遗传模拟退火算法求解TSP问题matlab代码\RouteLength.m, 372 , 2020-07-31
遗传模拟退火算法求解TSP问题matlab代码\SAGA_TSP.m, 3074 , 2020-07-31
遗传模拟退火算法求解TSP问题matlab代码\SA_Chrom.m, 1340 , 2020-06-13
遗传模拟退火算法求解TSP问题matlab代码\SA_Individual.m, 2207 , 2020-06-13
遗传模拟退火算法求解TSP问题matlab代码\Swap.m, 453 , 2020-04-25
遗传模拟退火算法求解TSP问题matlab代码, 0 , 2020-08-07

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • ls 与 mmse 两种信道估计算法比较LS_MMSE
    说明:  ls 与 mmse 两种信道估计算法比较(Comparison of LS and MMSE channel estimation algorithms)
    2020-09-15 14:47:56下载
    积分:1
  • 基于局域网通信的软件客户端,附加文件传送功能
    基于局域网通信的软件客户端,附加文件传送功能-LAN-based communications software client, Additional File Transfer Function
    2023-07-12 01:20:03下载
    积分:1
  • socket to receive the concrete realization of the code, test the connection usin...
    socket 接收代码的具体实现,测试连接时使用-socket to receive the concrete realization of the code, test the connection using
    2022-07-23 07:46:11下载
    积分:1
  • excel-and-sheet
    excel中利用vba合并多个sheet的简单代码,请注意修改 和to的序号范围(using a simple code in vba excel merge multiple sheet, note and to modify the serial number the range)
    2015-02-06 18:38:53下载
    积分:1
  • move-object-or-control-with-mouse-click
    move object or control with mouse click vb6
    2016-07-17 01:24:03下载
    积分:1
  • chen_bifur
    通用matlab程序,计算Chen系统分岔图。可将系统函数换成其他系统,计算不同系统的分岔图。(Calculation of the bifurcation diagram of Chen system)
    2018-03-22 14:49:49下载
    积分:1
  • document asynchronous sample download vb
    文件异步下载程序vb示例-document asynchronous sample download vb
    2022-01-31 20:41:38下载
    积分:1
  • 定义类IntChar Exercise-1-IntChar
    定义类IntChar,实现用一个整数保存一个长度不超过4的字符串。假设一个字符长度是1个字节。 * 例如:"ABCD",用一个整数保存,其二进制形式为:0100 0001 0100 0010 0100 0011 0100 0100 * 长度不足四个字符的串,剩下部分用0补足。 * * * 自己根据需要类IntChar的属性和方法,但需满足以下要求: * 1. 在类IntChar中,不能用C++语言中的string类型来定义任何属性(变量)。 * 2. 对于定义的类IntChar,在main函数中,能用以下方式使用类IntChar: * * void main() * { * IntChar IC("Love") * IC.ASC_Print() // 以字符串形式显示对象IC中保存的内容 * IC.Binary_Print() // 以二进制形式显示对象IC中保存的内容 * IC.Int_Print() // 以整数形式显示对象IC中保存的内容 * }(Custom class IntChar, save a length not exceeding 4 string with an integer. Suppose a character length is 1 byte.* For example: " ABCD" , kept by an integer, binary form: 0,100,000,101,000,010 0100 0011 0100 0100* length of less than four characters of the string, the rest of complement with 0. The*** the need class IntChar of the properties and methods, but must meet the following requirements:* 1. In class IntChar, can not use the string type the C++ language to define any attributes (variables).* 2. Defined class IntChar, the main function can be used following ways IntChar:** void main () {IntChar IC (" Love" ) * IC.ASC_Print () // in characters string displayed in the form saved in the object IC* IC.Binary_Print () // save the contents of the object IC* IC.Int_Print () in binary form // integer saved in the object IC*})
    2013-05-11 22:10:57下载
    积分:1
  • GifRichTextBox
    可以动态显示Gif的vb2008的RichTextBox,不带第三方控件的自定义控件 ,可以自由扩充 完全类似于QQ的动态表情显示哦 (Can dynamically display the Gif vb2008 RichTextBox, a custom control without third party control ,可以自由扩充 , free to expand 完全类似于QQ的动态表情显示哦 Dynamic expression is completely similar to the QQ display. )
    2014-06-24 14:15:56下载
    积分:1
  • 用VC SOCKET实现聊天室的服务器端
    用VC SOCKET实现聊天室的服务器端-VC SOCKET use chat rooms to achieve the server-side
    2023-07-06 02:30:03下载
    积分:1
  • 696518资源总数
  • 105547会员总数
  • 4今日下载