资源简介
遗传算法GAOT工具箱
代码片段和文件信息
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)];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1419 1998-04-14 13:26 gaot\gaot\adjswapMutation.m
文件 1487 1998-04-15 08:46 gaot\gaot\arithXover.m
文件 1495 1998-04-14 13:26 gaot\gaot\b2f.m
文件 2080 1998-04-14 13:26 gaot\gaot\binaryExample.m
文件 1504 1998-04-15 08:48 gaot\gaot\binaryMutation.m
文件 1639 1998-04-14 13:26 gaot\gaot\boundaryMutation.m
文件 1382 1998-04-14 13:26 gaot\gaot\calcbits.m
文件 4761 1998-04-17 09:46 gaot\gaot\Contents.m
文件 1451 1998-04-14 13:26 gaot\gaot\coranaEval.m
文件 1538 1998-04-14 13:26 gaot\gaot\coranaFeval.m
文件 1222 1998-04-14 13:26 gaot\gaot\coranaMin.m
文件 1654 1998-04-14 13:26 gaot\gaot\cyclicXover.m
文件 1471 1998-04-14 13:26 gaot\gaot\delta.m
文件 6837 1998-04-28 08:17 gaot\gaot\dists.m
文件 1586 1998-04-14 13:26 gaot\gaot\EER.m
文件 2348 1998-04-14 13:26 gaot\gaot\enhancederXover.m
文件 2118 1998-04-14 13:26 gaot\gaot\erXover.m
文件 1501 1998-04-14 13:26 gaot\gaot\f2b.m
文件 2322 1998-04-14 13:26 gaot\gaot\floatExample.m
文件 2137 1998-04-14 13:26 gaot\gaot\floatGradExample.m
文件 10805 1998-04-14 13:26 gaot\gaot\ga.m
文件 4213 1998-04-14 13:26 gaot\gaot\gademo.m
文件 3887 1998-04-14 13:26 gaot\gaot\gademo1.m
文件 1275 1998-04-14 13:26 gaot\gaot\gademo1eval1.m
文件 2840 1998-09-08 09:17 gaot\gaot\gademo2.m
文件 6262 1998-04-14 13:26 gaot\gaot\gademo3.m
文件 193 1998-04-14 13:26 gaot\gaot\gaMichEval.m
文件 132728 1998-09-08 09:28 gaot\gaot\gaotv5.ps
文件 174 1998-04-14 13:26 gaot\gaot\gaZBGrad.m
文件 684 1998-04-14 13:26 gaot\gaot\gaZBGradEval.m
............此处省略32个文件信息
- 上一篇:TestCenter过滤器的使用
- 下一篇:arduino温湿度采集头文件.rar
相关资源
- 基于遗传算法的多目标优化.rar
- 遗传算法工具箱gatool
- 一维大地电磁测深遗传算法反演
- 基于遗传算法的供应链网络的建立与
- 多点交叉基本遗传算法
- 并行多家族遗传算法
- 遗传算法的BP神经网络优化算法
- 遗传算法外文文献
- GA遗传算法TSP城市集合算例
- 遗传算法及其应用
- 用遗传算法解决八皇后问题
- 遗传算法求解CHN144城市的TSP问题
- 遗传算法的工具箱 GA工具箱
- 几种改进遗传算法的性能比较
- 遗传算法在PID参数整定中的应用
- 解整数规划的0-1遗传算法
- 基于粒子群遗传算法的云计算任务调
- 遗传算法 代码已经运行
- 使用遗传算法求二元函数的最小值
- 用遗传算法求解最短路径问题
- 遗传算法options
- 基于遗传算法的PID参数整定及仿真
- 多目标遗传算法优化案例
- NSGA-II带有详细注释及相关论文.rar
- 遗传算法在自变量降维中的应用
- 用遗传算法解决TSP问题
- GA-BP遗传算法优化神经网络
- 物流中心选址遗传算法
- 遗传算法求解多元函数最大值
- 遗传算法实数编码.zip
评论
共有 条评论