CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - matlab vrp

搜索资源列表

  1. matlab版VRP问题

    0下载:
  2. matlab上解决VRP问题的算法
  3. 所属分类:matlab例程

  1. tsp+vrp.rar

    1下载:
  2. 详细讲述模拟退火算法的理论原理。并TSP问题为例进行讲解,并各处多种语言的源代码,包括c,matlab以及delphi。 ,Simulated annealing algorithm described in detail the theory of principle. And TSP as an example to explain the problem and the source code of various languages, including c, matlab, as w
  3. 所属分类:transportation applications

    • 发布日期:2017-03-27
    • 文件大小:26057
    • 提供者:lian
  1. vrp.rar

    5下载:
  2. 编写的基于遗传算法解决VRP问题的源代码,Prepared VRP based on genetic algorithm to solve the problem of source code
  3. 所属分类:Other systems

    • 发布日期:2016-12-28
    • 文件大小:4186
    • 提供者:张凯
  1. VRP.rar

    4下载:
  2. 车辆路径问题的蚁群算法VRP -2opt,vrp
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-27
    • 文件大小:2310
    • 提供者:wangxuefeng
  1. cw

    10下载:
  2. 带时间窗的节约算法,求解车辆路径问题,是一个函数形式,效果很好-VRP,C-W
  3. 所属分类:交通/航空行业

    • 发布日期:2013-04-19
    • 文件大小:3102
    • 提供者:fangtao
  1. matlab-VRP

    1下载:
  2. 基于混合优化算法的车辆路径问题研究 matlab开发环境-matlab VPR Particle Swarm Optimization,PSO
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:1905
    • 提供者:黄安安
  1. matlab

    5下载:
  2. C-W节约法的matlab实现源代码,解决vrp问题-CW Conservation Act of matlab implementation source code, to solve the problem vrp
  3. 所属分类:matlab

    • 发布日期:2016-06-09
    • 文件大小:3072
    • 提供者:JQ
  1. tabu-search-matlab

    0下载:
  2. TSP for VRP solution w/ capacity constraint using Tabu Search Algorithm
  3. 所属分类:matlab

    • 发布日期:2017-03-22
    • 文件大小:4142
    • 提供者:didin rosid
  1. VRP

    0下载:
  2. 这是一个用C++编写的vrp问题的源码,很适合初学者。-This is a C++ Prepared vrp source issues, it is suitable for beginners.
  3. 所属分类:matlab

    • 发布日期:2017-03-24
    • 文件大小:106849
    • 提供者:ghy
  1. vrp

    2下载:
  2. 本人原创的用遗传算法实现的vrp问题求解,基于matlab语言-I original genetic algorithm is used to achieve the vrp problem solving, based on the matlab language
  3. 所属分类:matlab例程

    • 发布日期:2016-10-10
    • 文件大小:4425
    • 提供者:hattrick
  1. antcolonyalgorithmforVRP

    0下载:
  2. 蚁群算法解VRP问题 蚁群算法解VRP问题 蚁群算法解VRP问题 -the procedure of ant colony algorithm for VRP,used to solve the famous HP-hard problem: the VRP problem with the ant colony algorithm developed with matlab. It s not a felwell procedure, there are still some problems
  3. 所属分类:Document

    • 发布日期:2017-04-03
    • 文件大小:2477
    • 提供者:Timson
  1. matlab

    0下载:
  2. VRP问题的蚁群算法源码,很经典,很实用-Ant colony algorithm VRP source problem, it is a classic, it is practical
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:6595
    • 提供者:任树伟
  1. VRP

    1下载:
  2. 31个城市的VRP进行蚁群算法求解的matlab源码-31 cities, ant colony algorithm for VRP to the matlab source code
  3. 所属分类:source in ebook

    • 发布日期:2017-03-26
    • 文件大小:2159
    • 提供者:叶宏
  1. SA-for-VRP

    0下载:
  2. it s Seimulated annealing for VRP with capacity constraint
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:2726
    • 提供者:didin rosid
  1. 遗传算法求解vrp问题

    0下载:
  2. 遗传算法,使用MATLAB进行编程,求解VRP问题(Genetic algorithm for solving VRP problem)
  3. 所属分类:Windows编程

    • 发布日期:2017-07-19
    • 文件大小:7168
    • 提供者:GWJ
  1. antfunc6

    0下载:
  2. matlab源代码 ,解决旅行商路径优化问题,visual C,特分享(matlab vrp,i see it by coincidence,and it is useful,so share for learning)
  3. 所属分类:matlab例程

    • 发布日期:2018-04-30
    • 文件大小:33792
    • 提供者:岁月神偷11
  1. vrp

    1下载:
  2. 假设在一个供求关系系统中,车辆从货源取货,配送到对应的若干配送点。车辆存在最大载货量,且配送可能有时间限制。需要合理安排取货时间,组织适当的行车路线,使用户需求得到满足,同时使某个代价函数最小,比如总工作时间最少、路径最短等。 可以看出TSP问题是VRP问题的一种简单特殊形式。因此,VRP也是一种NP hard 问题。 目前解决此种问题的办法有多种,主要以启发式算法为主。包括退火算法、遗传算法、蚁群算法、禁忌算法等,本文介绍两种比较简单算法:C-W节约算法和遗传算法。(Assume that
  3. 所属分类:matlab例程

    • 发布日期:2019-10-19
    • 文件大小:4096
    • 提供者:HappyppaH
  1. 蚁群VRP

    2下载:
  2. 用蚁群算法解决VRP问题,包含基本蚁群算法(我记得不含时间窗约束)(Using ant colony algorithm to solve VRP problem, including basic ant colony algorithm)
  3. 所属分类:matlab例程

    • 发布日期:2019-10-14
    • 文件大小:9216
    • 提供者:Shielas
  1. MATLAB-VRP问题.zip

    2下载:
  2. 带时间窗的vrp问题,MATLAB程序,多车场问题(VRP Problem with time window, matlab program, multi yard problem)
  3. 所属分类:matlab例程

    • 发布日期:2020-04-20
    • 文件大小:12288
    • 提供者:dsfsdfdsfdsds
  1. VRP - 副本

    2下载:
  2. 用于求解配送路径优化问题,即vrp问题,算法是蚁群算法,优化目标为路线最短(It is used to solve the distribution path optimization problem, that is vrpentire. The algorithm is ant colony algorithm, and the optimization goal is the shortest route)
  3. 所属分类:matlab例程

    • 发布日期:2020-08-14
    • 文件大小:2048
    • 提供者:小时代8884
« 12 3 4 5 6 7 8 »
搜珍网 www.dssz.com