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

遗传算法VRP

于 2019-10-24 发布
0 332
下载积分: 1 下载次数: 10

代码说明:

说明:  一个求解vrp问题的简单代码,多车辆处理多任务点。(A simple code for solving VRP)

文件列表:

遗传算法VRP, 0 , 2019-10-18
遗传算法VRP\L.m, 293 , 2010-06-07
遗传算法VRP\adjust.m, 219 , 2010-06-07
遗传算法VRP\countz.m, 527 , 2010-06-07
遗传算法VRP\countzp.m, 926 , 2010-06-05
遗传算法VRP\crosover.m, 2016 , 2010-06-05
遗传算法VRP\crossover.asv, 2069 , 2010-06-05
遗传算法VRP\crossover.m, 2096 , 2010-06-07
遗传算法VRP\fit.asv, 625 , 2010-06-05
遗传算法VRP\fit.m, 666 , 2010-06-05
遗传算法VRP\fitness.asv, 87 , 2010-06-05
遗传算法VRP\fitness.m, 136 , 2010-06-07
遗传算法VRP\fun.m, 277 , 2010-06-05
遗传算法VRP\fv_mean.m, 107 , 2010-06-07
遗传算法VRP\initialise.m, 333 , 2010-06-05
遗传算法VRP\main.m, 707 , 2010-06-07
遗传算法VRP\mutation.m, 436 , 2010-06-07
遗传算法VRP\selection.m, 65 , 2010-06-07

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

发表评论

0 个回复

  • Spectral_Methods_In_Matlab
    matlab中的特殊数学算法,英文版书籍,比较专业。(The special mathematical algorithm matlab )
    2010-07-05 22:40:20下载
    积分:1
  • newmark
    用matlab编写的newmark-belta法求解结构动力响应(Prepared using matlab newmark-belta method for structural dynamic response)
    2010-08-21 10:28:28下载
    积分:1
  • fecgm
    独立成份分析(ICA)以及winner滤波 Source separation of complex signals with JADE. Jade performs `Source Separation in the following sense: X is an n x T data matrix assumed modelled as X = A S + N where o A is an unknown n x m matrix with full rank. o S is a m x T data matrix (source signals) with the properties a) for each t, the components of S(:,t) are statistically independent b) for each p, the S(p,:) is the realization of a zero-mean `source signal . c) At most one of these processes has a vanishing 4th-order cumulant. o N is a n x T matrix. It is a realization of a spatially white Gaussian noise, i.e. Cov(X) = sigma*eye(n) with unknown variance sigma. This is probably better than no modeling at all...( Source separation of complex signals with JADE. Jade performs `Source Separation in the following sense: X is an n x T data matrix assumed modelled as X = A S+ N where o A is an unknown n x m matrix with full rank. o S is a m x T data matrix (source signals) with the properties a) for each t, the components of S(:,t) are statistically independent b) for each p, the S(p,:) is the realization of a zero-mean `source signal . c) At most one of these processes has a vanishing 4th-order cumulant. o N is a n x T matrix. It is a realization of a spatially white Gaussian noise, i.e. Cov(X) = sigma*eye(n) with unknown variance sigma. This is probably better than no modeling at all...)
    2010-05-27 23:08:51下载
    积分:1
  • matlab
    matlab2010开发环境,实现高斯金字塔,修改图片地址即可,测试成功,代码注释详细(matlab2010 development environment to achieve the Gaussian pyramid, modify the picture address test is successful, the code comments in detail)
    2012-05-23 13:53:11下载
    积分:1
  • calp
    用于求解不可压ns方程的动量守恒计算方程的核心部分,采用了二维对称调用的技术。(Ns for solving incompressible equation of momentum conservation equation of the core part of the calculation, using a technique called two-dimensional symmetry.)
    2011-10-14 08:52:52下载
    积分:1
  • batch-omp
    KSVDBox - Implementation of the K-SVD and K-SVD denoise algorithms.(K-SVD dictionary training. ksvd - K-SVD dictionary training. Signal denoising. ompdenoise - OMP denoising. ompdenoise1 - OMP denoising of 1-D signals. ompdenoise2 - OMP denoising of 2-D signals. ompdenoise3 - OMP denoising of 3-D signals. ksvddenoise - K-SVD denoising. Overcomplete DCT dictionary. odctdict - Overcomplete DCT dictionary. odct2dict - 2-D overcomplete DCT dictionary. odct3dict - 3-D overcomplete DCT dictionary. odctndict - Multi-dimensional overcomplete DCT dictionary. Demonstrations. ksvddemo - K-SVD training demonstration. ksvddenoisedemo- K-SVD denoising demonstration. Miscellaneous. showdict - Display a dictionary of image patches. ksvdver - K-SVD toolbox version information.)
    2014-01-05 18:21:19下载
    积分:1
  • xiashan
    MATLAB 牛顿下山法的一个小程序,原理就不详细说了。因牛顿迭代法受初值选取的限制,为防止迭代发散,对迭代过程再附加一项要求:|f(x(k+1))|<|f(x(k))|,将牛顿法迭代的结果:x(k+1) =x(k)-f(x(k))/f (x(k))和前一近似值x(k)适当加权平均做为新的改进值:x(k+1)=u*x(k+1) +(1-u)*x(k),其中u(0<> 迭代时u取1开始,逐次减半计算,直至附加要求符合为止。实例计算中x(k)=x(0)不变,只更新u和x(k+1),直至:|f(x(k+1))|<|f(x(k))|(即|f(x(1))|<|f(x(0))|),然后更新下山因子为u=1,继续以牛顿法迭代。(MATLAB Newton-down a small program, the principle is not explained in detail. Newton iteration by the initial value of the selected limit, in order to prevent additional iterative divergence, the iterative process a request: | f (x (k+1)) | < | f (x (k)) | Newton iteration Results: x (k+1) ' = X (k)-f (x (k))/f' (x (k)) and a previous approximation x (k), appropriately weighted average as a new improved value: x (k+1 ) = u* x (k+1) ' + (1-u)* x (k), where u (0 < u> iteration take successive calculated at 50 until the additional requirements found so far. examples of calculation of X ( k) = x (0) unchanged profile u and x (k+1, hungry) until: | f (x (k+1)) | < | f (x (k)) | (i.e. | f (x (1)) | < | f (x (0)) |), then profile downhill factor for u = 1, to continue to Newton iteration.)
    2013-05-15 08:52:09下载
    积分:1
  • myspider
    used to parse HTML in either a linear or nested fashion.
    2014-11-12 21:17:29下载
    积分:1
  • Mutual-Image-Registration-2D
    这是一个2D图像互信息配准的程序,其中图像已经导入到matlab中,并形成mat文件,对于学习互信息配准有很大的帮助(2_D image registration based on mutual information )
    2010-11-01 22:05:19下载
    积分:1
  • eig_lanczos
    用lanczos求特征值的matlab程序(with lanczos eigenvalues for the Matlab procedures)
    2007-01-01 16:20:52下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载