代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/276068/10769766
vi random average.vi
www.eeworm.com/read/349902/10786947
m avg_average.m
function [aplot, splot, means] = avg_Average(hfile, tpfile, tcd, setype, bas)
% AVG::Average - average time course according to AVG info
%
% FORMAT: [aplot, splot, means] = avg.Average(tpfil
www.eeworm.com/read/274792/10852209
m synchronous_average.m
function m=synchronous_average(x,T)
%
% SYNCHRONOUS_AVERAGE
% calculate the synchronous average of the signal x
% with period T
%
% USAGE
% m=synchronous_average
www.eeworm.com/read/348735/10869713
txt average_result.txt
www.eeworm.com/read/271693/10983540
m average2.m
% take the averaged across a given dimension
% e.g. X is a 100 by 1000 matrix, Y = average2(X,20,2) gives Y of 100 by 50 matrix
% X can be a up to 3 dimension matrix
function y = average2(x,avera
www.eeworm.com/read/271693/10983553
m average3.m
% mean of the dB value
% dB --> linear --> mean --> dB
function y = average3(x,average_factor)
y = nan(floor(length(x)/average_factor),1);
for k = 1:floor(length(x)/average_factor)
y(k) = ...
www.eeworm.com/read/457469/7325189
vi random average.vi
www.eeworm.com/read/447880/7544639
txt average平均分.txt
float average(int s[],int n)
{ int sum=0;
float a;
for(i=0;i
www.eeworm.com/read/444799/7606411
c average1.c
/*
** Compute the average of the specified number of values (bad).
*/
float
average( int n_values, int v1, int v2, int v3, int v4, int v5 )
{
float sum = v1;
if( n_values >= 2 )
sum +=
www.eeworm.com/read/444799/7606414
c average2.c
/*
** Compute the average of the specified number of values.
*/
#include
float
average( int n_values, ... )
{
va_list var_arg;
int count;
float sum = 0;
/*
** Prepare