资源简介
免费matlab代码资源

代码片段和文件信息
function [child] = adjswapmutation(parboundsgenInfoOps)
% Adjswap mutation performs a swap of two adjacent
% genes in a permutation
%
% function [newSol] = adjswapmutation(parentboundsOps)
% parent - the first parent ( [solution string function value] )
% bounds - the bounds matrix for the solution space
% Ops - Options for binaryMutation [gen prob_of_mutation]
% Binary and Real-Valued Simulation Evolution for Matlab
% Copyright (C) 1996 C.R. Houck J.A. Joines M.G. Kay
%
% C.R. Houck J.Joines and M.Kay. A genetic algorithm for function
% optimization: A Matlab implementation. ACM Transactions on Mathmatical
% Software Submitted 1996.
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 1 or (at your option)
% any later version.
%
% This program is distributed in the hope that it will be useful
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details. A copy of the GNU
% General Public License can be obtained from the
% Free Software Foundation Inc. 675 Mass Ave Cambridge MA 02139 USA.
sz = size(par2)-1;
pos = round(rand*(sz-1) + 0.5); %Generate U(1n-1)
child = par;
child(pos:pos+1)=[par(pos+1) par(pos)];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 27136 2010-05-17 19:24 GA\一个动态遗传算法代码 matlab的.doc
文件 1490 1996-02-06 10:17 GA\GAOT\arithXover.m
文件 1495 1996-02-06 10:22 GA\GAOT\b2f.m
文件 1507 1996-02-06 10:18 GA\GAOT\binaryMutation.m
文件 1642 1996-02-06 10:19 GA\GAOT\boundaryMutation.m
文件 1382 1996-02-06 10:22 GA\GAOT\calcbits.m
文件 3021 1996-02-06 10:16 GA\GAOT\Contents.m
文件 1451 1996-02-06 10:27 GA\GAOT\coranaEval.m
文件 1222 1996-02-06 10:28 GA\GAOT\coranaMin.m
文件 1471 1996-02-06 10:26 GA\GAOT\delta.m
文件 1492 1996-02-06 10:22 GA\GAOT\f2b.m
文件 10718 1996-02-06 10:19 GA\GAOT\ga.m
文件 4830 1996-02-06 10:26 GA\GAOT\gademo1.m
文件 1274 1996-02-06 10:27 GA\GAOT\gademo1eval1.m
文件 2819 1996-02-06 10:27 GA\GAOT\gademo2.m
文件 6261 1996-02-06 10:27 GA\GAOT\gademo3.m
文件 57780 1995-08-30 10:40 GA\GAOT\gaot.dvi
文件 219314 2007-06-17 13:45 GA\GAOT\gaot.pdf
文件 133622 1996-01-16 18:07 GA\GAOT\gaot.ps
文件 3317 1996-02-07 10:21 GA\GAOT\gaotindex.html
文件 2139 1996-02-06 10:17 GA\GAOT\heuristicXover.m
文件 2600 1996-02-07 10:32 GA\GAOT\index.html
文件 3199 1996-02-06 10:17 GA\GAOT\initialize.m
文件 1265 1996-02-06 10:21 GA\GAOT\maxGenTerm.m
文件 1991 1996-02-06 10:20 GA\GAOT\multiNonUnifMutation.m
文件 2193 1996-02-06 10:20 GA\GAOT\nonUnifMutation.m
文件 2311 1996-02-06 10:21 GA\GAOT\normGeomSelect.m
文件 1421 1996-02-06 10:22 GA\GAOT\optMaxGenTerm.m
文件 1459 1996-02-06 10:22 GA\GAOT\parse.m
文件 803 1996-02-07 10:38 GA\GAOT\README
............此处省略62个文件信息
相关资源
- MATLAB 实现各类常见算法
- matlab编写的量子遗传算法
- 协同进化遗传算法求解函数优化问题
- 基于遗传算法的旅游全国的路径最优
- 基于遗传算法的机器人路径规划matl
- 多种群遗传算法的函数优化算法(源
- 遗传算法完整MATLAB程序实数法,轮盘
- 遗传算法解决最优路径、选址问题
- 遗传算法GA车间调度Matlab代码
- 求解多旅行商(MTSP)的遗传算法的
- 基于遗传算法的小波神经网络在股票
- matlab开发-基于遗传算法的机器人运动
- 《Matlab遗传算法工具箱及应用》源码
- 田纳西-伊斯曼matlab数据,完全免费
- 遗传算法图像分割matlab+源代码
- 神经网络、遗传算法、支持向量机、
- 谢菲尔德(Sheffield)遗传算法工具箱
- matlab中文帮助文档免费
- 遗传算法优化支持向量机GASVM
- 遗传算法工具箱
- MATLAB遗传算法工具箱及应用.zip
- 《MATLAB 遗传算法工具箱及应用》PDF完
- 遗传算法(Genetic Algorithm)MATLAB案例详
- MATLAB遗传算法工具箱及应用》pdf版.
- 基于遗传算法的自动排课系统设计
- MATLAB.遗传算法和粒子群算法程序设计
- 多目标优化文档及代码
- 超完整规范的多目标遗传优化算法M
- 遗传算法 -- matlab ga工具箱
- 偏微分方程的MATLAB解法 陆君安编著
评论
共有 条评论