代码搜索:average

找到约 5,196 项符合「average」的源代码

代码结果 5,196
www.eeworm.com/read/455463/1614568

m filtboxnan.m

function y = filtboxnan(x,n) % y = filtboxnan(x,n) % % THIS IS BASICALLY A MOVING AVERAGE OPERATOR % x is the input vector; the no.of pts. of the vector % need not be specified % n is the number o
www.eeworm.com/read/455463/1614571

m filtbox.m

function y = filtbox(x,n) % y = filtbox(x,n) % % THIS IS BASICALLY A MOVING AVERAGE OPERATOR % x is the input vector; the no.of pts. of the vector % need not be specified % n is the number of poin
www.eeworm.com/read/455463/1614574

m filttri.m

function y = filttri(x,n) % y = filttri(x,n) % % THIS IS BASICALLY A WEIGHTED MOVING AVERAGE OPERATOR % x is the input vector; the no.of pts. of the vector % need not be specified % n is the numbe
www.eeworm.com/read/226285/4786052

java runningaverage.java

import java.io.*; import java.util.Random; // reads numbers from input stream and compute running average class RunningAverage extends Thread { private DataInputStream in; double total
www.eeworm.com/read/173155/5376228

m stdmean.m

function Y=stdmean(X,A) %STDMEAN Weighted average based on error from the mean % stdmean(X,A) % This calculates a weighted mean based on how clusted the % data is. Each value is weighted inversely
www.eeworm.com/read/328472/3441983

h visualkb.h

#define MAX_STRINGS 12 class CMyApp : public CWinApp { public: virtual BOOL InitInstance (); }; class CMainWindow : public CWnd { protected: int m_cxChar; // Average character w
www.eeworm.com/read/316805/3608339

h visualkb.h

#define MAX_STRINGS 12 class CMyApp : public CWinApp { public: virtual BOOL InitInstance (); }; class CMainWindow : public CWnd { protected: int m_cxChar; // Average character w
www.eeworm.com/read/309003/3708492

m mefig208.m

% mefig208 -- Segmented wavelet transform for the Four Test Signals % % Here we display the ideally segmented Average-Interpolating % Wavelet Transform for the four test signals. % % Note that t
www.eeworm.com/read/308750/3712413

c aver.c

int averageValue( int [], int); // Requires: array_size equals the number of elements in the array, array_size > 0 // Returns: The average value of the integer array int averageValue( int valu
www.eeworm.com/read/286814/4032671

cpp d_6_1.cpp

#include "stdafx.h" #include #include #include using namespace std; class Student { private: string name; float chinese,math,english,total,average; public: