代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/466806/7020992
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/322305/7072523
m average.m
function y=average(n,w,glue)
%AVERAGE Weighted average.
% Y=AVERAGE(N,W) returns the weighted average of the vector N
% with weights given by the vector W.
% Y=AVERAGE(N,W,1) returns the weigh
www.eeworm.com/read/458481/7296237
jpg average.jpg
www.eeworm.com/read/443788/7623203
m average.m
%将5000->4096点,验证得出此函数正确,n是原来长度,k是调整后长度
function [numshort] = Average( n, k, numlong )
rate=n/k;
for m=1:k
count(m)=0;
sum(m)=0;
for l=1:n
if (floor((l-1)/rate))==(m-1)
count(m)=count(m)+1;
www.eeworm.com/read/443518/7631559
c average.c
/*************************************************************************/
/* */
/* Average results for training and test sets */
/* ------------------------------------------ */
/*
www.eeworm.com/read/297636/8007219
asv average.asv
function result=average(matrix)
result=mean(mean(matrix));
www.eeworm.com/read/297636/8007222
m average.m
function result=average(matrix)
temp=mean(matrix);
[row,col]=size(temp);
result=double(sum(temp)/col);
www.eeworm.com/read/196818/8058125
c average.c
double average(double *vec,int dim)
{
int i;
double aver;
aver=0.0;
for (i=0;i
www.eeworm.com/read/296805/8076650
htm average.htm
// Average.java
class Average {
public static void main(String[] args) {
int num1 = 10;
int num2 = 23;
System.out.println("The average i