📄 crossoversinglepoint.m
字号:
function xoverKids = crossoversinglepoint(parents,options,GenomeLength,FitnessFcn,unused,thisPopulation)
%CROSSOVERSINGLEPOINT Single point crossover.
% XOVERKIDS = CROSSOVERSINGLEPPOINT(PARENTS,OPTIONS,GENOMELENGTH, ...
% FITNESSFCN,SCORES,THISPOPULATION) creates the crossover children XOVERKIDS
% of the given population THISPOPULATION using the available parents
% PARENTS. A single crossover point for each child is chosen at random.
% The child has the genes of the first parent up to this point and the genes
% of the other parent after this point.
%
% Example:
% Create an options structure using CROSSOVERSINGLEPOINT as the crossover
% function
% options = gaoptimset('CrossoverFcn',@crossoversinglepoint);
% Copyright 2004 The MathWorks, Inc.
% $Revision: 1.9 $ $Date: 2004/01/16 16:51:36 $
% How many children to produce?
nKids = length(parents)/2;
% Allocate space for the kids
xoverKids = zeros(nKids,GenomeLength);
% To move through the parents twice as fast as thekids are
% being produced, a separate index for the parents is needed
index = 1;
for i=1:nKids
% get parents
parent1 = thisPopulation(parents(index),:);
index = index + 1;
parent2 = thisPopulation(parents(index),:);
index = index + 1;
% cut point is AFTER this index.
xOverPoint = ceil(rand * (length(parent1) - 1));
% make one child
xoverKids(i,:) = [ parent1(1:xOverPoint),parent2(( xOverPoint + 1 ): end ) ];
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -