登录
首页 » matlab » MDVRP_遗传算法

MDVRP_遗传算法

于 2020-11-26 发布 文件大小:19KB
0 211
下载积分: 1 下载次数: 12

代码说明:

  MDVRP_遗传算法 可以运行 希望对大家有帮助(a solution to MDVRP ,i hope it can help you)

文件列表:

MDVRP_遗传算法\代码
MDVRP_遗传算法\代码\MDVRP
MDVRP_遗传算法\代码\MDVRP\CalDist.m, 229, 2012-05-23
MDVRP_遗传算法\代码\MDVRP\crossover.m, 768, 2012-05-31
MDVRP_遗传算法\代码\MDVRP\curlist.m, 879, 2008-11-25
MDVRP_遗传算法\代码\MDVRP\initialStor.m, 1016, 2012-05-23
MDVRP_遗传算法\代码\MDVRP\jiaocha.m, 771, 2012-05-16
MDVRP_遗传算法\代码\MDVRP\jiaocha1.m, 773, 2012-05-26
MDVRP_遗传算法\代码\MDVRP\MDVRP.m, 4418, 2008-11-25
MDVRP_遗传算法\代码\MDVRP\Opt.m, 606, 2012-05-31
MDVRP_遗传算法\代码\MDVRP\Opt1.m, 798, 2012-05-16
MDVRP_遗传算法\代码\MDVRP\p01-n50-S4-w80.mat, 512, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p02-n50-S4-w160.mat, 512, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p03-n75-S4-w140.mat, 604, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p03-n75-S5-w140.mat, 604, 2012-05-22
MDVRP_遗传算法\代码\MDVRP\p04-n100-S2-w100.mat, 688, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p05-n100-S2-w200.mat, 688, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p06-n100-S3-w100.mat, 694, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p07-n100-S4-w100.mat, 697, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p08-n249-S2-w310.mat, 1775, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p09-n249-S3-w310.mat, 1779, 2012-05-17
MDVRP_遗传算法\代码\MDVRP\p10-n249-S4-w310.mat, 1784, 2012-05-18
MDVRP_遗传算法\代码\MDVRP\p11-n249-S5-w310.mat, 1788, 2012-05-18
MDVRP_遗传算法\代码\MDVRP\p12-n80-S2-w60.mat, 562, 2012-05-18
MDVRP_遗传算法\代码\MDVRP\vrp.m, 247, 2008-11-25

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

发表评论

0 个回复

  • shock_tube_problem
    求解激波管问题等产生的偏微分方程组的各种数值算法。(Shock tube problem solving, such as partial differential equations arising from a variety of numerical algorithm.)
    2009-03-18 19:18:29下载
    积分:1
  • 地震记录的据 record
    地震记录的数据,可以用来绘制地震记录,也可以作为地震反演的数据(Seismic wave inverse time migration program can realize the inversion of seismic wave)
    2017-09-23 11:04:28下载
    积分:1
  • bifurcation and LE
    计算非线性系统的分叉图和李雅普诺夫指数,用于判断系统的混沌状态,独立的两个文件(a tool to calculate bifurcation and Lyapunov exponent)
    2018-05-28 22:25:00下载
    积分:1
  • Fourierbianhuajifanbianhuan
    说明:  这是用matlab实现的关于傅立叶变换及其反变换的实例.(This is achieved using Matlab on the Fourier transform and its inverse transform example.)
    2006-02-27 12:18:15下载
    积分:1
  • LINGO1
    数学建模,很简单的,希望对你们用帮助,望下载!(Mathematical Modeling)
    2012-09-09 11:36:29下载
    积分:1
  • 11087 统逆序对
    Description 设a[0…n-1]是一个包含n个数的数组,若在i<j的情况下,有a[i]>a[j],则称(i, j)为a数组的一个逆序对(inversion)。 比如 <2,3,8,6,1> 有5个逆序对。请采用类似“合并排序算法”的分治思路以O(nlogn)的效率来实现逆序对的统计。 一个n个元素序列的逆序对个数由三部分构成: (1)它的左半部分逆序对的个数,(2)加上右半部分逆序对的个数,(3)再加上左半部分元素大于右半部分元素的数量。 其中前两部分(1)和(2)由递归来实现。要保证算法最后效率O(nlogn),第三部分(3)应该如何实现? 此题请勿采用O(n^2)的简单枚举算法来实现。 并思考如下问题: (1)怎样的数组含有最多的逆序对?最多的又是多少个呢? (2)插入排序的运行时间和数组中逆序对的个数有关系吗?什么关系? 输入格式 第一行:n,表示接下来要输入n个元素,n不超过10000。 第二行:n个元素序列。 输出格式 逆序对的个数。 输入样例 5 2 3 8 6 1 输出样例 5(Set a[0... N-1] is a n array containing n numbers. If there is a [i] > a [j] i n the case of I < j, then (i, j) is a n inversion pair of a array. For example, <2,3,8,6,1> has five reverse pairs. Please use the idea of "merge sorting algorithm" to achieve the statistics of inverse pairs with O (nlogn) efficiency. The number of inverse pairs of a sequence of n elements consists of three parts: (1) The number of reverse pairs in the left half, (2) the number of reverse pairs in the right half, (3) the number of elements in the left half is greater than that in the right half. The first two parts (1) and (2) are implemented by recursion. To ensure the final efficiency of the algorithm O (nlogn), how should the third part (3) be implemented? Do not use O (n ^ 2) simple enumeration algorithm to solve this problem.)
    2019-01-07 23:52:06下载
    积分:1
  • 振动台试验据整理和处理
    说明:  振动台试验数据整理和处理算法,部分代码使用了王济、胡晓编著的《MATLAB在振动信号处理中的应用》一书中的代码(Data arrangement and processing algorithm of shaking table test)
    2020-12-30 11:39:00下载
    积分:1
  • WeiFengYing-supporting-program
    魏凤英的现代气候统计诊断与预测技术的fortran源代码,里边包括气候变化趋势分析的程序:线性倾向估计、滑动平均及一些趋势检验和函数;气候突变检测:滑动t检验、Cramer s法、Yamamoto法、Mann-Kendall法、Pettitt法Lepage法;气候序列周期的提取方法:功率谱、最大熵谱、交叉谱、多维最大熵、奇异谱分析、小波分析;以及EOF、主成分等等,总之熟悉这本书的同学,应该知道这本书的“强大”是做数理统计分析、及气象等必备的工具书啊,而且其程序,尤为宝贵!特此与大家分享!!!(WeiFengYing modern climate statistical diagnosis and prediction technology of FORTRAN source code, the inside including climate change trend analysis program: linear tend to estimate, moving average, accumulative anomaly, five, seven and nine point two times smooth cubic spline function and some trend test and functions Climate mutation detection: sliding t test, Cramer s method, Yamamoto method, Mann- Kendall method, Pettitt method Lepage method Climate sequence cycle extraction methods: power spectrum, the maximum entropy spectrum, cross spectrum, multidimensional maximum entropy, singular spectrum analysis and wavelet analysis And EOF, principal component, etc., in short familiar with this book classmate, should know the book "strong" is doing mathematical statistical analysis, and weather required reference ah, and its program, particularly precious! I share with you!!!!!! )
    2012-09-13 11:53:01下载
    积分:1
  • 25_GONG
    列句25宫的所有组合。 每行,每列,和对角线 数字和为25。(sentence of 25 out of all the combinations Palace. Each line, each and diagonal figures and 25.)
    2006-10-10 14:52:44下载
    积分:1
  • 拉格朗日插值法_matlab
    数学最优问题中,拉格朗日乘数法(以数学家约瑟夫·路易斯·拉格朗日命名)是一种寻找变量受一个或多个条件所限制的多元函数的极值的方法。(In the mathematical optimization problem, the Lagrange multiplier method (named by the mathematician Joseph Luis Lagrange) is a method of finding the extremum of a multivariate function which is restricted by one or more conditions.)
    2018-05-01 21:20:07下载
    积分:1
  • 696518资源总数
  • 106242会员总数
  • 10今日下载