代码搜索:如何学习 Best?
找到约 10,000 项符合「如何学习 Best?」的源代码
代码结果 10,000
www.eeworm.com/read/131051/14163000
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/232312/14198720
h ide-timing.h
#ifndef _IDE_TIMING_H
#define _IDE_TIMING_H
/*
* $Id: ide-timing.h,v 1.6 2001/12/23 22:47:56 vojtech Exp $
*
* Copyright (c) 1999-2001 Vojtech Pavlik
*/
/*
* This program is free software; you
www.eeworm.com/read/231188/14248327
h structs.h
#if !defined(_CHROM_STRUCTS)
#define _CHROM_STRUCTS
#define LINELENGTH 80 /* width of printout */
#define BITS_PER_BYTE 8 /* number of bits per byt
www.eeworm.com/read/129048/14268953
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
; ter
www.eeworm.com/read/226935/14446604
c mode_decision.c
/*!
***************************************************************************
* \file mode_decision.c
*
* \brief
* Main macroblock mode decision functions and helpers
*
**********
www.eeworm.com/read/222447/14689541
cpp 2d_convergence.cpp
#include
using namespace meep;
#include "config.h"
const double diameter = 0.8;
const double r = diameter*0.5;
double holey_2d(const vec &xx) {
const volume v = vol2d(2.0,1.0,100.0);
www.eeworm.com/read/222263/14699194
m paint.m
%图形绘制
cla;
subplot(2,2,1);
for i=1:city_n
plot(pos(i,1),pos(i,2),'.');hold on;
end
hold off;
for i=1:(city_n-1)
a=tobu_A(min_pos,i);
b=tobu_A(min_pos,i+1);
line([pos(a,1)
www.eeworm.com/read/117304/14931742
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
; ter
www.eeworm.com/read/205619/15311315
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/205619/15311324
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