代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/257139/11948042
vi batting average.vi
www.eeworm.com/read/151143/12232737
m l_average.m
function wlog=l_average(wlog,varargin)
% Function computes running average over specified log curves
% The function needs equidistantly sampled data; no null values
% Written by: E. R., June 7, 200
www.eeworm.com/read/251529/12339318
hpp average1.hpp
#ifndef _BAYES_FILTER_AVERAGE1
#define _BAYES_FILTER_AVERAGE1
/*
* Bayes++ the Bayesian Filtering Library
* Copyright (c) 2002 Michael Stevens
* See accompanying Bayes++.htm for terms and conditio
www.eeworm.com/read/250662/12393038
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/250662/12393051
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
www.eeworm.com/read/250225/12422920
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/250225/12422941
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/132105/14110282
cpp average finder.cpp
/*Mean, Median, Mode and range! By Kyle C.
This code is
www.eeworm.com/read/125450/14493792
c gps_average.c
#include "as_gps.h"
int main(int argc, char **argv)
{
void *data;
double lat, lgt;
unsigned fix, read_count = 0;
if(as_gps_open("/dev/gps"))
{
printf("Can't open device\n");
exit(1
www.eeworm.com/read/223007/14664746
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 +=