Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
SUBROUTINE ttest(data1,n1,data2,n2,t,prob)
|
||||
INTEGER n1,n2
|
||||
REAL prob,t,data1(n1),data2(n2)
|
||||
CU USES avevar,betai
|
||||
REAL ave1,ave2,df,var,var1,var2,betai
|
||||
call avevar(data1,n1,ave1,var1)
|
||||
call avevar(data2,n2,ave2,var2)
|
||||
df=n1+n2-2
|
||||
var=((n1-1)*var1+(n2-1)*var2)/df
|
||||
t=(ave1-ave2)/sqrt(var*(1./n1+1./n2))
|
||||
prob=betai(0.5*df,0.5,df/(df+t**2))
|
||||
return
|
||||
END
|
||||
Reference in New Issue
Block a user