代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/158106/5598574
c sc.c
/***********************************************************************
sc.c - creates classifiers from feature vectors of examples, as well as
classifying example feature vectors.
Copyright (C)
www.eeworm.com/read/154890/5633424
c sc.c
#include
#include "bitvector.h"
#include "matrix.h"
#include "util.h"
#include "sc.h"
#include "stdio.h"
#include "stdlib.h"
#include "math.h"
#include "zdebug.h"
#define EPS (1.0e-6) /*
www.eeworm.com/read/475868/6768044
c 2-9.c
#include"stdio.h"
main()
{
float T[4][7],sum,avg;
int i,j;
float f1,*f2;
clrscr();
sum=avg=0;
scanf("%f",&T[0][0]);
sum=sum+T[0][0];
for(i=0;i
www.eeworm.com/read/475868/6768053
c 2-8.c
#include"stdio.h"
main()
{
float T[4][7],sum,avg;
int i,j;
float f1,*f2;
clrscr();
sum=avg=0;
f1=1.0;
f2=&f1;
for(i=0;i
www.eeworm.com/read/475868/6768056
c 2-7.c
#include"stdio.h"
main()
{
float T[4][7],sum,avg;
int i,j;
clrscr();
sum=avg=0;
for(i=0;i
www.eeworm.com/read/174065/6783507
c ch21-5.c
#include "stdio.h"
define N 10
float average(int *array)
{
int i;
float aver,sum=0;
for (i=0;i
www.eeworm.com/read/174065/6783578
c ch26-3.c
#include "stdio.h"
#include
#include
void main()
{
int a[21],i,ran,max,min,sum,average;
for (i=1;i
www.eeworm.com/read/475315/6796215
m lyapunov_exponent.m
clear;
%computes lyapunov exponent
r = 4.0;
%%%%% first converge to attractor
x = rand; %choose random initial data
for i=1:200;
x = r*x*(1-x); %apply logistic map
end;
%%%%% find (1/n) S
www.eeworm.com/read/472009/6878051
cpp xt7-5.cpp
#include
#include
using namespace std;
const int n=10;
struct student
{ char num[6];
char name[8];
int score[4];
float avr;
} stu[n];
int main()
{ int i,j,max,m
www.eeworm.com/read/472009/6878087
cpp xt6-15.cpp
#include
using namespace std;
int main()
{void avsco(float *,float *);
void avcour1(char (*)[10],float *);
void fali2(char course[5][10],int num[],float *pscore,float aver[4]);
voi