代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/466142/7039597
m recall_precision_curve.m
function [curve,opP,Area,Threshold]=recall_precision_curve(X,Total_TP,Recall_Value)
AVERAGE_PRECISION_VALUES = [0:0.1:1];
if (nargin==2)
Recall_Value=0;
end
if (Recall_Value==0)
AVERAGE_PRE
www.eeworm.com/read/209819/15213946
cpp automode.cpp
/*
Robot Simulator
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Fo
www.eeworm.com/read/375429/9360311
sql select @aver1=dbo.average(@course1).sql
use test
declare @course1 char(20)
declare @aver1 int
select @course1='001'
select @aver1=dbo.average(@course1)
select @aver1 as '001 平均成绩'
www.eeworm.com/read/391253/8414009
m segsnr.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/391063/8424339
m hoffmann.m
function b = hoffmann(Ea0,Ea,Ew,walkers,T,step,maxsteps,C)
% Equilibration method supplied with SA Tools.
% Copyright (c) 2002, by Richard Frost and Frost Concepts.
% See http://www.frostconcepts.c
www.eeworm.com/read/191613/8425758
cpp pr0603.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.3 on page 143
// Passing an array to a function
#include
using namespace s
www.eeworm.com/read/189368/8473528
c a2d.c
//
// Copyright 2003 Texas Instruments
// author: Russell Anderson
//
// A/D Conversion
// Integer test of A/D Converter
//
#include
#include
#define SET 1
#define R
www.eeworm.com/read/189368/8473529
bak a2d.bak
//
// Copyright 2002 Texas Instruments
//
// A/D Conversion
//
#include
#include
#define SET 1
#define RESET 0
#define CLEAR 0
extern void autobaud(void);
exter
www.eeworm.com/read/189063/8491909
c report.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: report
www.eeworm.com/read/188512/8532205
cpp gradebook.cpp
// Fig. 4.9: GradeBook.cpp
// Member-function definitions for class GradeBook that solves the
// class average program with counter-controlled repetition.
#include
using std::cout;
us