资源简介
美国北卡罗来纳大学的gaot遗传算法工具箱
使用方法:
1 将GAOT工具箱文件拷贝至Matlab文件夹下,具体路径视安装情况而定,例如:
C:\program files\MATLAB\R2009a\toolbox。
2 将GAOT工具箱路径加入Matlab文件路径之中。
流程为:File-->Set Path-->Add Folder。即,将C:\program files\MATLAB\R2009a\toolbox\gaot文件夹加入该路径系统中。
3 重新启动Matlab,运行即可。
4 一般情况下,会出现如下情况。
安装遗传工具箱后出现问题:Warning
代码片段和文件信息
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)];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4761 1998-04-17 09:46 gaot\Contents.m
文件 1586 1998-04-14 13:26 gaot\EER.m
文件 1419 1998-04-14 13:26 gaot\adjswapMutation.m
文件 1487 1998-04-15 08:46 gaot\arithXover.m
文件 1495 1998-04-14 13:26 gaot\b2f.m
文件 2080 1998-04-14 13:26 gaot\binaryExample.m
文件 1504 1998-04-15 08:48 gaot\binaryMutation.m
文件 1639 1998-04-14 13:26 gaot\boundaryMutation.m
文件 1382 1998-04-14 13:26 gaot\calcbits.m
文件 1451 1998-04-14 13:26 gaot\coranaEval.m
文件 1538 1998-04-14 13:26 gaot\coranaFeval.m
文件 1222 1998-04-14 13:26 gaot\coranaMin.m
文件 1654 1998-04-14 13:26 gaot\cyclicXover.m
文件 1471 1998-04-14 13:26 gaot\delta.m
文件 6837 1998-04-28 08:17 gaot\dists.m
文件 2348 1998-04-14 13:26 gaot\enhancederXover.m
文件 2118 1998-04-14 13:26 gaot\erXover.m
文件 1501 1998-04-14 13:26 gaot\f2b.m
文件 2322 1998-04-14 13:26 gaot\floatExample.m
文件 2137 1998-04-14 13:26 gaot\floatGradExample.m
文件 10805 1998-04-14 13:26 gaot\ga.m
文件 193 1998-04-14 13:26 gaot\gaMichEval.m
文件 174 1998-04-14 13:26 gaot\gaZBGrad.m
文件 684 1998-04-14 13:26 gaot\gaZBGradEval.m
文件 4213 1998-04-14 13:26 gaot\gademo.m
文件 3887 1998-04-14 13:26 gaot\gademo1.m
文件 1275 1998-04-14 13:26 gaot\gademo1eval1.m
文件 2840 1998-09-08 09:17 gaot\gademo2.m
文件 6262 1998-04-14 13:26 gaot\gademo3.m
文件 2136 1998-04-14 13:26 gaot\heuristicXover.m
文件 3282 1998-04-14 15:56 gaot\initializega.m
............此处省略26个文件信息
相关资源
- Matlab2018B破解版云盘链接.rar
- 量子粒子群算法的matlab实现,有程序
- 图像清晰度评价函数
- MATLAB神经网络应用设计第二版源代码
- 三次样条插值函数csape的用法
- arrow3.m--Matlab
- 随机森林Matlab
- 蚁群算法采用matlab开发的仿真平台
- GPS基本原理及其MATLAB实现全部MATLAB程
- matlab_倾斜校正算法代码
-
OFDM的QPSK的simuli
nk仿真,matlab 2016a版 - AWGN信道的蒙特卡洛仿真
- Matlab Maggiwick
- 非常好用的MATLAB混沌工具箱
- MATLAB绘制2维数据点程序,用于显示聚
- 粒子群算法与蚁群算法混合解决旅行
- 平均间隙法matlab代码
- matlab图像互信息计算
- 鸡群算法CSOmatlab程序代码
- 香农编码、霍夫曼编码比较的matlab源
- 三次样条插值的MATLAB程序
- 红枣尺寸检测的matlab代码
- 利用matlab实现图像的角点检测
- matlab实现的哈密顿环路
- Matlab优化工具箱的常用
- 简单神经网络MATLAB编程
- Lee滤波、Kuan滤波和frost滤波的MATLAB源
- Matlab年积日换算为日期代码
- 基于matlab的卫星轨道仿真含有源代码
- 自适应干扰对消程序 matlab
评论
共有 条评论