代码搜索:如何学习 Best?
找到约 10,000 项符合「如何学习 Best?」的源代码
代码结果 10,000
www.eeworm.com/read/162044/10343392
dsp best.dsp
# Microsoft Developer Studio Project File - Name="BEST" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/162044/10343398
obj best.obj
www.eeworm.com/read/162044/10343404
plg best.plg
Build Log
--------------------Configuration: BEST - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Temp\RSP7A.tmp" w
www.eeworm.com/read/162044/10343408
exe best.exe
www.eeworm.com/read/162044/10343412
ncb best.ncb
www.eeworm.com/read/424747/10418056
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/424747/10418386
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/353714/10428180
mat best.mat
www.eeworm.com/read/278151/10564878
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 % 程