|
06 2008 档案
摘要: #include
#include
#define MAX 200
char dates[MAX][15];
double a[MAX]={12.3,12.6,12.5,12.4,11.2,13.2,12.3,14.3,15.5,13.4 };
double b05[MAX];
double b10[MAX];
double b20[MAX];
int i;
/* 求一个点的移动平均值 */
double avg(int pos, int r)
{ int i,j;
double s;
for(j=0;j<=r-1;j++)
s+=a[pos-r];
b[pos]=s/r;
/*printf("%10f",b[i]); */
return b[pos];
}
/* 求 阅读全文
|