home *** CD-ROM | disk | FTP | other *** search
- #include "gj.h"
- #include <math.h>
- #include <stdlib.h>
-
- void MatTxTiX(float *aryin,int numrow,int numcol,float *aryout)
- {
- int i;
- int j;
- int k;
-
- for ( i = 0; i <= numcol-1; ++i ) {
- for ( j = 0; j <= numcol-1; ++j ) {
- aryout[i*numcol+j] = 0.0;
- for ( k = 0; k <= numrow-1; ++k ) {
- aryout[i*numcol+j] = aryout[i*numcol+j] +
- aryin[k*numcol+j] * aryin[k*numcol+i];
- }
- }
- }
- }
-
- void MatYTiX(float *aryy,float *aryx,int numrow,
- int numcol,float *aryout)
- {
- int i;
- int j;
- int k;
-
- for ( i = 0; i <= numcol-1; ++i ) {
- aryout[i] = 0.0;
- for ( k = 0; k <= numrow-1; ++k ) {
- aryout[i] = aryout[i] + aryy[k] * aryx[k*numcol+i];
- }
- }
- }
-
- void ResAnalysis(float *regmat,
- float *ymat,float *regcoef,float *aryinv,
- int numrow,int numcol,float *yest,float *resid,
- float *see,float *coefsig,float *rsq,float *r)
- {
- int i;
- int j;
- int nxx;
- float sumressq;
- float sumy;
- float sumysq;
- char c;
-
- sumressq = 0.0;
- sumy = 0.0;
- sumysq = 0.0;
- for ( i = 0; i <= numrow-1; ++i ) {
- yest[i] = 0.0;
- for ( j = 0; j <= numcol-1; ++j ) {
- yest[i] = yest[i] + regcoef[j] * regmat[i*numcol+j];
-
- }
- resid[i] = yest[i] - ymat[i];
- sumressq = sumressq + resid[i]*resid[i];
- sumy = sumy + ymat[i];
- sumysq = sumysq + ymat[i]*ymat[i];
- }
- if ( numrow == numcol ) {
- nxx = 1;
- }
- else {
- nxx = numrow - numcol;
- }
- (*see) = sqrt(sumressq / nxx);
- for ( i = 0; i <= numcol-1; ++i ) {
- coefsig[i] = (*see) * sqrt(fabs(aryinv[i*numcol+i]));
- }
- (*rsq) = (1.0 - sumressq / (sumysq - (sumy*sumy) / numrow));
- (*r) = sqrt((*rsq));
- }
-
- void MultipleReg(float *indvardat,float *depvardat,int numiv,int numobs,
- float *regcoef,float *yest,float *resid,float *see,
- float *coefsig,float *rsq,float *r,char *regerror)
- {
-
- char regerrorxx;
- float rxx;
- float rsqxx;
- float seexx;
-
- float *regmat;
- float *aryinv;
- float *scmat;
- float *arya;
- float *aryg;
-
- int numcol;
- int i;
- int j;
- int k;
- float regdet;
- char c;
-
- numcol = numiv + 1;
-
- regmat = (float *) calloc((numobs)*numcol,4);
- aryinv = (float *) calloc(numcol*numcol,4);
- arya = (float *) calloc(numcol*numcol,4);
- aryg = (float *) calloc(numcol,4);
-
- for ( i = 0; i <= numobs-1; ++i ) {
- for ( j = 0; j <= numiv-1; ++j ) {
- regmat[i*numcol + j + 1] = indvardat[i*numiv + j];
- }
- regmat[i*numcol] = 1;
- }
- MatTxTiX(regmat,numobs,numcol,arya);
- MatYTiX(depvardat,regmat,numobs,numcol,aryg);
-
- GaussJordan(arya,aryg,numcol,regcoef,aryinv,®det);
-
- ResAnalysis(regmat,depvardat,regcoef,aryinv,numobs,
- numcol,yest,resid,&seexx,coefsig,&rsqxx,&rxx);
-
-
-
- *see = seexx;
- *rsq = rsqxx;
- *r = rxx;
- if ( regdet < 1.0e-7 ) {
- (*regerror) = 1;
- }
- else {
- (*regerror) = 0;
- }
- free(regmat); free(aryinv); free(arya); free(aryg);
- }
-