代码搜索:Best 开发教程
找到约 10,000 项符合「Best 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/414590/2144653
c best.c
/****************************************************************/
/* NAME: Smith Surasmith */
/* ACCT: sls */
www.eeworm.com/read/414590/2144684
c best.c
/****************************************************************/
/* NAME: Smith Surasmith */
/* ACCT: sls */
www.eeworm.com/read/414590/2144706
c best.c
/****************************************************************/
/* NAME: Smith Surasmith */
/* ACCT: sls */
www.eeworm.com/read/380400/2659318
txt best.txt
第1代的最佳个体:
[6,7,1,2,5,4,3,8,0] 适应值:119
第2代的最佳个体:
[3,7,1,2,5,4,6,0,8] 适应值:118
第3代的最佳个体:
[6,1,2,7,5,4,3,8,0] 适应值:115
第4代的最佳个体:
[3,1,7,2,5,4,6,0,8] 适应值:113
第5代的最佳个体:
[3,1,7,2,5,4,6,0,
www.eeworm.com/read/472843/6858797
class best.class
www.eeworm.com/read/471910/6884070
m best.m
% 2.7 求出群体中最大得适应值及其个体
%遗传算法子程序
%Name: best.m
%求出群体中适应值最大的值
function [bestindividual,bestfit]=best(pop,fitvalue)
[px,py]=size(pop);
bestindividual=pop(1,:);
bestfit=fitvalue(1);
for i=2:px
if
www.eeworm.com/read/394046/8250582
m best.m
function [bestindividual,bestfit]=best(pop,fitvalue)
global popsize N length;
bestindividual=pop(1,:);
bestfit=fitvalue(1);
for i=2:popsize
if fitvalue(i)>bestfit % 最大的个体
bestindi
www.eeworm.com/read/369221/9659092
m best.m
function [bestindividual,bestfit]=best(pop,fitvalue)
global popsize N length;
bestindividual=pop(1,:);
bestfit=fitvalue(1);
for i=2:popsize
if fitvalue(i)>bestfit % 最大的个体
bestindi
www.eeworm.com/read/366836/9796598
m best.m
% 2.7 求出群体中最大得适应值及其个体
%遗传算法子程序
%Name: best.m
%求出群体中适应值最大的值
function [bestindividual,bestfit]=best(pop,fitvalue)
[px,py]=size(pop);
bestindividual=pop(1,:);
bestfit=fitvalue(1);
for i=2:px
if
www.eeworm.com/read/414147/11126223
m best.m
% 2.7 求出群体中最大得适应值及其个体
%遗传算法子程序
%Name: best.m
%求出群体中适应值最大的值
function [bestindividual,bestfit]=best(pop,fitvalue)
[px,py]=size(pop);
bestindividual=pop(1,:);
bestfit=fitvalue(1);
for i=2:px;
if