代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/365527/9858404
m average.m
function y = average(x)
% 向量元素的平均值
% AVERAGE(X), X表示的是向量元素的值
% 如果没有输入向量,程序将出错
[m,n] = size(x);
if (~((m == 1) | (n == 1)) | (m == 1 & n == 1))
error('Input must be a vector')
end
% 计算
y =
www.eeworm.com/read/363665/9940529
c average.c
/*************************************************************************/
/* */
/* Average results for training and test sets */
/* ------------------------------------------ */
/*
www.eeworm.com/read/166055/10037903
java average.java
//********************************************************************
// Average.java Author: Lewis/Loftus
//
// Demonstrates the use of a while loop, a sentinel value, and a
// running
www.eeworm.com/read/361166/10065383
vi average.vi
www.eeworm.com/read/359900/10116764
m average.m
function av = average(A)
%AVERAGE Computes the average value of an array.
% AV = AVERAGE(A) computes the average value of input array, A,
% which must be a 1-D or 2-D array.
% Sample M-f
www.eeworm.com/read/358235/10193452
c average.c
/*************************************************************************/
/* */
/* Average results for training and test sets */
/* ------------------------------------------ */
/*
www.eeworm.com/read/279061/10468779
c average.c
/***************************************************************
采样值求平均值
****************************************************************/
unsigned short Average(unsigned short *Adp)
{
uint Tem
www.eeworm.com/read/423076/10589507
p average.p
www.eeworm.com/read/277457/10638068
cpp average.cpp
#include
using namespace std;
int main()
{
double grades[] = {88, 99, 73, 56, 87, 64};
double sum, average;
sum = 0;
for (int loop_index = 0; loop_index < sizeo
www.eeworm.com/read/277085/10669836