登录
首页 » matlab » 蚁群算法求解VRPTW问题matlab代码

蚁群算法求解VRPTW问题matlab代码

于 2020-08-23 发布
0 202
下载积分: 1 下载次数: 6

代码说明:

说明:  用于车辆路径问题优化,提高物流运输路线效率,节省成本(It can be used to optimize the vehicle routing problem, improve the efficiency of logistics transportation routes and save costs)

文件列表:

蚁群算法求解VRPTW问题matlab代码\ACO_VRPTW.m, 4549 , 2020-06-03
蚁群算法求解VRPTW问题matlab代码\begin_s.m, 1176 , 2020-04-17
蚁群算法求解VRPTW问题matlab代码\begin_s_v.m, 649 , 2020-04-17
蚁群算法求解VRPTW问题matlab代码\c101.txt, 1899 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\change.m, 238 , 2020-04-18
蚁群算法求解VRPTW问题matlab代码\costFun.m, 409 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\deal_vehicles_customer.m, 1107 , 2020-03-24
蚁群算法求解VRPTW问题matlab代码\decode.m, 2086 , 2020-04-17
蚁群算法求解VRPTW问题matlab代码\draw_Best.m, 1766 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\Judge.m, 1248 , 2020-03-24
蚁群算法求解VRPTW问题matlab代码\JudgeRoute.m, 1505 , 2020-04-17
蚁群算法求解VRPTW问题matlab代码\Judge_Del.m, 452 , 2020-03-24
蚁群算法求解VRPTW问题matlab代码\Judge_TW.m, 919 , 2020-04-17
蚁群算法求解VRPTW问题matlab代码\leave_load.m, 597 , 2020-04-17
蚁群算法求解VRPTW问题matlab代码\linspecer.m, 8449 , 2015-09-16
蚁群算法求解VRPTW问题matlab代码\next_point.m, 4513 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\next_point_set.m, 2581 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\part_length.m, 372 , 2020-04-17
蚁群算法求解VRPTW问题matlab代码\roulette.m, 656 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\travel_distance.m, 734 , 2020-03-24
蚁群算法求解VRPTW问题matlab代码\updateTau.m, 1175 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\VC_to_Route.m, 210 , 2020-04-19
蚁群算法求解VRPTW问题matlab代码\vehicle_load.m, 975 , 2020-03-24
蚁群算法求解VRPTW问题matlab代码, 0 , 2020-06-03

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

发表评论

0 个回复

  • MATLABxinhaoyuxitongGUI
    说明:  一个完整的信号与系统的matlab的GUI仿真界面程序,适合与毕业设计,包括连续和离散部分(A complete signal and system simulation matlab' s GUI interface program, and graduation for the design, including continuous and discrete parts)
    2011-04-10 15:36:29下载
    积分:1
  • net
    网路编程 vc++网络编程实例向导 内容丰富 包含全面 对网络编程很有帮助(internet pragram)
    2009-04-09 13:31:04下载
    积分:1
  • GNSS_SDR
    《软件定义的GPS和伽利略接收机》配套资料,实现中频GPS信号的“捕获”、“跟踪”、“导航解算”并且有各阶段的“绘图”,便于理解。需要“中频数据”才能运行。(" Software-defined GPS and Galileo receivers," supporting information, to achieve intermediate frequency GPS signals " capture" , " track" , " navigation solution," and there are various stages of " drawing" , easy to understand. Need to " IF data" to run.)
    2011-05-24 09:57:14下载
    积分:1
  • Stocks-query
    VB编写股票行情小工具MiniStock(MiniStock source)
    2013-11-07 15:28:43下载
    积分:1
  • C#抓取IE浏览器网站整体截图实例源码
    C#抓取整个网站为一个图片
    2013-01-17下载
    积分:1
  • RF_Matlab_Tools
    说明:  非常实用的工具,可以用Matlab来进行射频上船用的转换以及分析。(例如可以将S矩阵转化成Z矩阵,放大器稳定性分析……)(Very useful tool, you can use Matlab to carry out on the marine radio frequency conversion, as well as analysis. (Such as the S matrix can be transformed into Z matrix, amplifier stability analysis ... ...))
    2008-09-19 10:38:45下载
    积分: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
  • 第8届模拟升降机
    说明:  实现蓝桥杯嵌入式第8届省赛题目,实现使用32单片机模拟电梯运行的功能(Realize the 8th provincial competition of Blue Bridge Cup embedded system, and realize the function of using 32 single chip microcomputer to simulate elevator operation)
    2019-11-05 10:42:54下载
    积分:1
  • 865736
    使用消息框,C++Builder精选编程学习源码,很好的参考资料。(Use a message box, C++Builder select learning programming source code, a good reference.)
    2013-11-22 06:49:36下载
    积分:1
  • GMMPSkinColor
    经典的高斯混合模型背景建模+肤色检测的Matlab实现(Classic Gaussian mixture model background modeling+ skin detection Matlab achieve)
    2013-03-29 14:59:33下载
    积分:1
  • 696516资源总数
  • 106658会员总数
  • 16今日下载