代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/144399/12796865
m dailyave.m
function [d,fave] = dailyAve(t,f)
% dailyAve Compute average daily flow rate from hourly flow data
% Used for analysis of Glen Canyon Dam data
%
% Synopsis: [d,fave] = dailyTotal(t,f
www.eeworm.com/read/244076/12891921
m mav.m
function [out]=mav(v,n,all,in)
%
% mav.m
%
% Moving average filter
%
% v = current variable
% n = number of steps to include
% all = 0 to filter entire data set
% in = input data
% out
www.eeworm.com/read/137229/13338562
m mav.m
function [out]=mav(v,n,all,in)
%
% mav.m
%
% Moving average filter
%
% v = current variable
% n = number of steps to include
% all = 0 to filter entire data set
% in = input data
% out
www.eeworm.com/read/136959/13351381
c bitcnt_1.c
/*
** Bit counter by Ratko Tomic
*/
#include "bitops.h"
int CDECL bit_count(long x)
{
int n = 0;
/*
** The loop will execute once for each bit of x set, this is in average
** twice as fast
www.eeworm.com/read/304650/13790280
m example.m
%Example of the one-step-ahead forecast
%%Predicts the difference between decadal
%average sunspot number, which is mostly a sunspot number derived from tree ring radiocarbon content by Solanki, S. K.
www.eeworm.com/read/300891/13883391
m smooth_spectrum.m
function [P,f,w,tw] = smooth_spectrum(d,dt,L,io);
%SMOOTH_SPECTRUM: Power spectrum estimate by smoothing the periodogram.
% For more than one trace provides the average spectrum
%
www.eeworm.com/read/490882/6445083
asv simulation_data.asv
clc;
clear;
% 仿真参数:
% Pow = -30; % average transmitted power (dBm)
% fc = 50e9; % sampling frequency
% numbits =1000; % number of bits generated by the source
% Ts = 50e-9;
www.eeworm.com/read/490882/6445100
m simulation_data.m
clc;
clear;
% 仿真参数:
% Pow = -30; % average transmitted power (dBm)
% fc = 50e9; % sampling frequency
% numbits =1000; % number of bits generated by the source
% Ts = 50e-9;
www.eeworm.com/read/488338/6493531
cpp student_linkedlist.cpp
//学生成绩管理。
#include
#include "SinglyLinkedList.h" //单链表类
#include "Student.h" //例2.2的学生结构
double average(SinglyLinkedList
www.eeworm.com/read/479166/6699924
h gradebook.h
// Fig. 4.9: GradeBook.h
// Definition of class GradeBook that determines a class average.
// Member functions are defined in GradeBook.cpp
#include // program uses C++ standard string cla