?? select.m
字號(hào):
function Gpath=Select(Gpath,FP,Popsize)
%輪盤賭選擇
temppath=Gpath;
roulette=cumsum(FP);
for i=1:Popsize
tempP=rand(1);
for j=1:length(roulette)
if tempP<roulette(j)
break;
end
end
Gpath(i,:)=temppath(j,:);
end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -