资源简介
MATLAB遗传算法工具箱gaot,MATLAB R2017a亲测可用zszs
代码片段和文件信息
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)];
相关资源
- 讲DPM的MATLAB模型保存为txt
-
MATLABSimuli
nk与Modelsim联合仿真步骤及 - MATLAB多视点图像合成GUI
- c均值算法matlab实现
- 基于matlab程序的汉字识别
- DFA(Detrended fluctuation analysis) matlab
- matlab 物体碰撞模型论文
- 基于matlab设计DOE元件的GS算法源代码
- 基于MIMO的信号检测算法仿真程序
- 球杆系统 模糊控制 matlab实际控制
- MATLAB 2017 深度学习 车辆检测 R_CNN
- Bursa_Wolf,布尔莎坐标转换,matlab,平
- matlab实现亚像素
- 非下采样Contourlet变换工具包 nsct_too
- 双音多频Goertzel算法Matlab仿真
- Matlab小波图像处理+完整程序
- 非线性薛定谔方程数值解的MATLAB仿真
- 数字信号处理matlab版_代码.rar
- 最小二乘支持向量机MATLAB程序,可分
- matlab实现图像去燥滤波锐化边缘检测
- matlab图像分割垂直投影代码
- 信号检测与估值仿真 高斯窄带噪声自
- srad滤波的matlab算法别人的上传
- Matlab实现Gabor提取图片纹理
- matlab解N维方程组的代码
- sift配准 matlab代码
- 数字图像处理图像压缩MATLAB程序及仿
- 数字图像处理图像增强MATLAB程序及仿
- matlab在距地面10m的高度以15m/s的初速度
- matlab版SVM代码,线性和非线性,拿来
评论
共有 条评论