代码搜索:如何学习 Best?
找到约 10,000 项符合「如何学习 Best?」的源代码
代码结果 10,000
www.eeworm.com/read/280852/10288192
asm match.asm
; match.asm -- optional optimized asm version of longest match in deflate.c
; Copyright (C) 1992-1993 Jean-loup Gailly
; This is free software; you can redistribute it and/or modify it under the
;
www.eeworm.com/read/425713/10335218
asv initial.asv
%程序初始化
gen=50; %设置进化代数
popsize=50; %设置种群规模大小
best_in_history(gen)=inf; %初始化全局历史最优解
best_in_history(:)=inf; %初始化全局历史最优解
max_velocity=0.5;
%popnum=1; %设置种群数量
pop(popsize,8)=
www.eeworm.com/read/425713/10335256
asv outputdata.asv
%实时输出结果
%输出当前种群中粒子位置
subplot(1,2,1);
for i=1:popsize
plot(pop(i,1),pop(i,2),'b*');
hold on;
end
plot(gbest_x,gbest_y,'r.','markersize',20);axis([-2,2,-2,2]);
hold off;
subplot(1
www.eeworm.com/read/354002/10397512
asv initial.asv
%程序初始化
gen=50; %设置进化代数
popsize=50; %设置种群规模大小
best_in_history(gen)=inf; %初始化全局历史最优解
best_in_history(:)=inf; %初始化全局历史最优解
max_velocity=0.5;
%popnum=1; %设置种群数量
pop(popsize,8)=
www.eeworm.com/read/354002/10397543
asv outputdata.asv
%实时输出结果
%输出当前种群中粒子位置
subplot(1,2,1);
for i=1:popsize
plot(pop(i,1),pop(i,2),'b*');
hold on;
end
plot(gbest_x,gbest_y,'r.','markersize',20);axis([-2,2,-2,2]);
hold off;
subplot(1
www.eeworm.com/read/423904/10527193
asv initial.asv
%程序初始化
gen=50; %设置进化代数
popsize=50; %设置种群规模大小
best_in_history(gen)=inf; %初始化全局历史最优解
best_in_history(:)=inf; %初始化全局历史最优解
max_velocity=0.5;
%popnum=1; %设置种群数量
pop(popsize,8)=
www.eeworm.com/read/423904/10527219
asv outputdata.asv
%实时输出结果
%输出当前种群中粒子位置
subplot(1,2,1);
for i=1:popsize
plot(pop(i,1),pop(i,2),'b*');
hold on;
end
plot(gbest_x,gbest_y,'r.','markersize',20);axis([-2,2,-2,2]);
hold off;
subplot(1
www.eeworm.com/read/273887/10895650
c func.c
/*****************************************************************************/
//func.c
// 定义有关各迷宫小车图像处理函数
// 处理针对YUV图象的UV进行
// 注意所有的都是先列后行!
// X对应列,对应宽度,Y对应行,对应高度
/***************************
www.eeworm.com/read/273879/10895773
cpp qiyuanview.cpp
// qiyuanView.cpp : implementation of the CQiyuanView class
//
#include "stdafx.h"
#include "qiyuan.h"
#include "qiyuanDoc.h"
#include "qiyuanView.h"
#include "UserSet.h"
#include "MapSet.h