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

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

于 2020-12-22 发布
0 264
下载积分: 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 个回复

  • _inchnstr
    Unlockit will return 0 if the named lock exists, contains the given pid, and is successfully removed -1 otherwise.
    2015-11-28 22:01:27下载
    积分:1
  • drawchazrt
    多曲线分析数据,基于C#的多曲线数据分析实例源代码,运行EXE需要用到数据库文件,已放在Database文件夹中,源码测试截图并没有看到多曲线效果,是因为数据库没有附加,有闲暇的亲们可以自己附加上数据库测试一下。(Multi curve analysis data, multi curve data analysis based on the C# source code examples, running EXE need to use the database file, has been placed in the Database folder, source test shots and did not see much curve effect, because the database is not added, have leisure dear who can add database test.)
    2014-01-21 15:00:15下载
    积分:1
  • 一个串口通信的VB源序,用于控制或者站台的信息显示.
    一个串口通信的VB源程序,用于控制或者站台的信息显示.-A serial port communication VB source code for the control of the site or the information display.
    2022-05-01 00:29:05下载
    积分:1
  • telescope-optical
    大口径望远镜光学系统的误差分配与分析 (Error large telescope optical system distribution and analysis)
    2013-11-28 13:06:08下载
    积分:1
  • fangkuai2
    俄罗斯方块,用VC6.0写的,使用小键盘的2,8,4,6实现移动和变化,5暂停(Tetris with VC6.0 written using the keypad 2,8,4,6 for mobile and change, 5 suspended)
    2013-11-12 22:32:00下载
    积分:1
  • 线工具,可以使用ndis中间层,用vc的简单防火墙序使用ndis中间层,用vc的简单防火墙序...
    线程工具,可以使用ndis中间层,用vc编的简单防火墙程序使用ndis中间层,用vc编的简单防火墙程序-threading tools can use NDIS intermediate layer using vc series of simple procedures for the use of firewall NDIS intermediate layer using vc series of simple procedures firewall
    2023-06-07 16:25:02下载
    积分:1
  • graphics
    实验一:类与对象实验: 几何图形类的设计 实验目的:掌握用类进行面向对象程序设计的方法,掌握使用对象作为类的成员变量,掌握方法的参数传递,掌握静态域和静态方法。 实验内容:编写4个类:Rectangle、Circle、Geometry、Exa,具体要求如下: ① Rectangle类有double型成员变量表示矩形左上角的位置坐标及矩形的宽和高,要求提供修改和返回各成员变量的方法。 ② Circle类有double型成员变量表示圆心坐标和圆的半径,要求提供修改和返回各成员变量的方法。 ③ Geometry类有Rectangle类和Circle型的成员变量rect和circle。即Geometry类创建的对象由一个矩形和一个圆组合而成。要求该类提供修改rect、circle位置和大小的方法;提供显示rect和circle位置关系的方法,并能够显示圆是否完全坐落于矩形中。 ④ 要求能对创建的Rectangle类和Circle类对象数目进行统计。 Exa类含有main方法,在main方法中用Geometry类创建对象,该对象调用相应的方法 设置圆和矩形的位置及大小并输出圆是否包含在矩形中。输出当前Rectangle和Circle 对象数目。 (test one)
    2014-05-05 08:37:25下载
    积分:1
  • iocp 聊天服务器,使用完成端口进行服务器的设计
    iocp 聊天服务器,使用完成端口进行服务器的设计-iocp chat server, the server port to use to complete the design
    2022-04-19 03:01:25下载
    积分:1
  • WINCC-VBS-mannal
    WINCC脚本编程,主要介绍VBS,从入门到精通全过程。(WINCC SCRIPT PROGRAMMER)
    2012-02-16 10:47:47下载
    积分:1
  • AF
    说明:  雷达发射宽带信号,线性调频信号模糊度函数(Radar transmitting wideband signal, ambiguity function of LFM signal)
    2018-06-18 22:20:00下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载