exchange.m

来自「遗传算法matlab实现」· M 代码 · 共 13 行

M
13
字号
function vec = exchange(vec1,vec2,pos,numSVM)
% It realizes the partial crossover of two vectors,which have the same length.
% It returns the two postcrossover vectors.
% vec1 and vec2 respectively refers to the vectors for crossover,
% start_pos and stop_pos respectively refers to the location of the individuals.
temp=vec2(pos:numSVM);
vec=vec1;
vec(pos:numSVM)=temp;




⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?