原型函數(shù):
創(chuàng)新互聯(lián)公司專注于企業(yè)全網(wǎng)營銷推廣、網(wǎng)站重做改版、永川網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5技術(shù)、成都做商城網(wǎng)站、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為永川等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
double exp ( double x );
float exp ( float x );
long double exp ( long double x );
必須要頭文件:
#include math.h
c語言中標(biāo)準(zhǔn)函數(shù)指由標(biāo)準(zhǔn)頭文件定義和實現(xiàn)的函數(shù),即“系統(tǒng)自帶的”,用戶函數(shù)是由程序員自己定義實現(xiàn)的。
無參函數(shù)就是函數(shù)沒有定義參數(shù),有參函數(shù)就是函數(shù)定義了參數(shù)。
隨機(jī)生成一百個1至100的隨機(jī)數(shù)。
#include stdio.h
#include stdlib.h
#include time.h
#define N 100
int main(int argc, char *argv[])
{
int i;
int a[N];
srand(time(NULL));
for(i=0;iN;i++)
a[i]=rand()%100+1;
printf("生成的隨機(jī)數(shù)為:\n");
for(i=0;iN;i++)
{
printf("%5d",a[i]);
if((i+1)%10==0)
printf("\n");
}
system("PAUSE");
return 0;
}
輸出結(jié)果如下:
生成的隨機(jī)數(shù)為:
41 15 82 1 23 51 16 96 92 17
86 71 87 69 74 5 50 18 42 52
46 34 52 18 40 74 79 35 22 36
65 94 80 91 18 72 61 79 4 11
61 30 95 55 11 19 38 87 78 52
95 30 99 53 99 99 10 79 70 33
91 85 10 99 47 58 93 41 19 71
56 60 10 24 73 87 18 38 13 73
57 22 91 4 37 60 67 58 85 48
46 7 57 100 73 96 60 44 24 23
請按任意鍵繼續(xù). . .
# include stdio.h
# include math.h
# include stdlib.h
# include time.h
# define MAX_N 3000 /*這個值為N可以定義的最大長度*/
# define N 100 /*產(chǎn)生隨機(jī)序列的點數(shù),注意不要大于MAX_N*/
# define PI 3.141592653
void randn(double *x,int num)
{
double x1[MAX_N],x2[MAX_N];
int i;
srand((unsigned)time(NULL));
for(i=0;iN;i++)
{
x1[i]=rand();
x2[i]=rand();
x1[i]=x1[i]/(RAND_MAX+1);
x2[i]=x2[i]/(RAND_MAX+1);
x[i]=sqrt(-2*log(x1[i]))*cos(x2[i]*2*PI);
}
}
void main()
{
double x[N],x_min,x_max;
int i;
FILE *fp;
if((fp=fopen("test.txt","w+"))==NULL)
{
fprintf(stderr,"Can't open the file\n");
exit(1);
}
randn(x,N);
x_min=x[0];
x_max=x[0];
for(i=0;iN;i++)
{
if(x[i]x_max)
{
x_max=x[i];
}
if(x[i]x_min)
{
x_min=x[i];
}
}
for(i=0;iN;i++)
{
x[i]=(x[i]-x_min)/(x_max-x_min)*(2-0.01)+0.01;
}
for(i=0;iN;i++)
{
printf("%f\t",x[i]);
fprintf(fp,"%lf\t",x[i]);
if(i%5==4)
{
printf("\n");
}
}
if(fclose(fp)==EOF)
{
printf("Closing error\n");
}
}
把生成的數(shù)據(jù)放入txt文件中,再導(dǎo)入matlab中,查看是否符合正態(tài)分布。
matlab中用normplot()畫圖如下:
很接近紅線,說明很符合正態(tài)分布。
再用以下代碼進(jìn)行精確性分析:
得到H1=0,說明確實是正態(tài)分布。。。。