资源简介
遗传算法必备工具包,matlab自身并不提供。
使用说明:下载之后,解压放在matlab的安装目录下的toolbox中,然后在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)];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-26 08:47 gaot\
文件 4761 1998-04-17 09:46 gaot\Contents.m
文件 1586 1998-04-14 13:26 gaot\EER.m
文件 1110 1998-04-17 08:59 gaot\README
文件 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
............此处省略27个文件信息
- 上一篇:Matlab版本的卷积神经网络案例
- 下一篇:matlab正弦信号高斯处理
相关资源
- matlab正弦信号高斯处理
- Matlab版本的卷积神经网络案例
- DS证据理论的MATLAB案例程序源代码
- 深度学习Matlab代码,亲测可以用。有
- 人工鱼群算法求解tsp问题matlab
- 阿尔法均值滤波函数
- mask与wallis影像图像匀光匀色算法的
- 利用Matlab实现的二维TDOA定位算法仿真
- 自适应与系统辨识中增广递推最小二
- 图像分割算法研究与实现
- PDR算法MATLAB仿真
- MATLAB画矢量图
- 随机森林的matlab的预测Iris
- 选址matlab程序
- scaleForLSSVM函数 matlab
- matlab车牌识别系统53744
- 用MATLAB绘制史密斯圆图
- BP网络的MATLAB实现
- 图片分割MATlab代码 初学者
- 基于matlab的图像阈值分割算法
- JadeMatlab代码
- segymat地震matlab
- adams_car与Matlab联合仿真
- morlet小波变换时间频率能量图
- MATLAB桶形变换
- 时间序列划分PAAmatlab程序
- matlab通过腐蚀与膨胀提取图像物体边
- 自适应匹配追踪matlab程序
- 支持向量机SVMmatlab代码
- DPSK的MATLAB实现53470
评论
共有 条评论