⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pearsn.c

📁 适合大型数值计算代码 现在网络上已经找不到了 购买需要20$
💻 C
字号:
#include <math.h>#define TINY 1.0e-20void pearsn(float x[], float y[], unsigned long n, float *r, float *prob,	float *z){	float betai(float a, float b, float x);	float erfcc(float x);	unsigned long j;	float yt,xt,t,df;	float syy=0.0,sxy=0.0,sxx=0.0,ay=0.0,ax=0.0;	for (j=1;j<=n;j++) {		ax += x[j];		ay += y[j];	}	ax /= n;	ay /= n;	for (j=1;j<=n;j++) {		xt=x[j]-ax;		yt=y[j]-ay;		sxx += xt*xt;		syy += yt*yt;		sxy += xt*yt;	}	*r=sxy/(sqrt(sxx*syy)+TINY);	*z=0.5*log((1.0+(*r)+TINY)/(1.0-(*r)+TINY));	df=n-2;	t=(*r)*sqrt(df/((1.0-(*r)+TINY)*(1.0+(*r)+TINY)));	*prob=betai(0.5*df,0.5,df/(df+t*t));}#undef TINY

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -