代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/449530/7501323
c scores_in.c
// scores_in.c -- uses loops for array processing
#include
#define SIZE 10
#define PAR 72
int main(void)
{
int index, score[SIZE];
int sum = 0;
float average;
prin
www.eeworm.com/read/447973/7542758
m alphabetagammamontecarlorun.m
%%% DynaEst 3.032 02/18/2000
% Copyright (c) 2000 Yaakov Bar-Shalom
%
%AlphaBetaGammaMonteCarloRun alpha beta gamma Kalman filter -- Monte Carlo runs
% it's availabe only when SimulationFlag is 1
www.eeworm.com/read/446732/7569526
txt 例8.12.txt
例8.12
float average(float array[ ]
,int n)
{int i;
float aver,sum=array[0];
for(i=1;i
www.eeworm.com/read/446389/7580508
cpp p147.cpp
//====================================================
//aaa.cpp
//调用三个函数实现求数组中每一行的平均值
//===================================================
#include
using namespace std;
//-----------
www.eeworm.com/read/443126/7637155
java gradebook.java
// Fig. 4.6: GradeBook.java
// GradeBook class that solves class-average problem using
// counter-controlled repetition.
import java.util.Scanner; // program uses class Scanner
public class Gra
www.eeworm.com/read/443126/7637175
java gradebook.java
// Fig. 4.9: GradeBook.java
// GradeBook class that solves class-average program using
// sentinel-controlled repetition.
import java.util.Scanner; // program uses class Scanner
public class Gr
www.eeworm.com/read/440389/7690026
cpp sms2.cpp
/*头文件*/
#include
#include /*其它说明*/
#include /*字符串函数*/
#include
#include
#define LEN sizeof(STUDENT)
typedef struct stu /*定义结构体数组用于缓存数据*/
www.eeworm.com/read/439651/7704425
m func2.m
function average = func(vector)
% FUNC2 A simple function with a single help line.
%
% Usage of this function:
% output = func2(input)
% "output" is the average of the input vector "input".
%
www.eeworm.com/read/439462/7708287
m daniellse.m
function phi=daniellse(y,J,L)
%
% Spectral estimation using the Daniell method.
%
% phi=daniellse(y,J,L);
%
% y -> the data vecto
% J -> 2J+1 = the number of frequency samples to aver
www.eeworm.com/read/436341/7771319
cpp 2350.cpp
#include
int main()
{
int n;
int m;
int count;
float sum;
float *score;
float average;
scanf("%d", &n);
for(int i = 0; i < n; i++)
{
scanf("%d", &m);
score = new