📄 exchange.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -