/* nag_sum_sqs (g02buc) Example Program. * * Copyright 2002 Numerical Algorithms Group. * * Mark 7, 2002. */ #include #include #include #include #include #include #include int main(void) { /* Scalars */ double alpha, sw; Integer exit_status, j, k, m, mm, n, pdx; NagError fail; Nag_SumSquare mean_enum; /* Arrays */ char mean[2], weight[2]; double *c=0, *v=0, *wmean=0, *wt=0, *x=0; double *wtptr=0; Nag_OrderType order; #ifdef NAG_COLUMN_MAJOR #define X(I,J) x[(J-1)*pdx + I - 1] order = Nag_ColMajor; #else #define X(I,J) x[(I-1)*pdx + J - 1] order = Nag_RowMajor; #endif INIT_FAIL(fail); exit_status = 0; Vprintf("g02buc Example Program Results\n"); /* Skip heading in data file */ Vscanf("%*[^\n] "); while (scanf("' %1s ' ' %1s '%ld%ld%*[^\n]", mean, weight, &m, &n) != EOF) { /* Allocate memory */ if ( !(c = NAG_ALLOC((m*m+m)/2, double)) || !(v = NAG_ALLOC((m*m+m)/2, double)) || !(wmean = NAG_ALLOC(m, double)) || !(wt = NAG_ALLOC(n, double)) || !(x = NAG_ALLOC(n * m, double)) ) { Vprintf("Allocation failure\n"); exit_status = -1; goto END; } #ifdef NAG_COLUMN_MAJOR pdx = n; #else pdx = m; #endif for (j = 1; j <= n; ++j) Vscanf("%lf", &wt[j-1]); Vscanf("%*[^\n] "); for (j = 1; j <= n; ++j) { for (k = 1; k <= m; ++k) Vscanf("%lf", &X(j,k)); } Vscanf("%*[^\n] "); if (mean[0] == 'M') mean_enum = Nag_AboutMean; else if (mean[0] == 'Z') mean_enum = Nag_AboutZero; else { Vprintf("Incorrect value for mean\n"); exit_status = -1; goto END; } if (weight[0] == 'W') wtptr = wt; /* Calculate sums of squares and cross-products matrix */ g02buc(order, mean_enum, n, m, x, pdx, wtptr, &sw, wmean, c, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from g02buc.\n%s\n", fail.message); exit_status = 1; goto END; } Vprintf("\n"); Vprintf("Means\n"); for (j = 1; j <= m; ++j) Vprintf("%14.4f%s", wmean[j-1], j%6 == 0 || j == m ? "\n":" "); if (wtptr) { Vprintf("\n"); Vprintf("Weights\n"); for (j = 1; j <= n; ++j) Vprintf("%14.4f%s", wt[j-1], j%6 == 0 || j == n ?"\n":" "); Vprintf("\n"); } /* Print the sums of squares and cross products matrix */ x04ccc(Nag_ColMajor, Nag_Upper, Nag_NonUnitDiag, m, c, "Sums of squares and cross-products", 0, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from x04ccc.\n%s\n", fail.message); exit_status = 1; goto END; } if (sw > 1.0) { /* Calculate the variance matrix */ alpha = 1.0 / (sw - 1.0); mm = m * (m + 1) / 2; f06fdc(mm, alpha, c, 1, v, 1); /* Print the variance matrix */ Vprintf("\n"); x04ccc(Nag_ColMajor, Nag_Upper, Nag_NonUnitDiag, m, v, "Variance matrix", 0, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from x04ccc.\n%s\n", fail.message); exit_status = 1; goto END; } } if (c) NAG_FREE(c); if (v) NAG_FREE(v); if (wmean) NAG_FREE(wmean); if (wt) NAG_FREE(wt); if (x) NAG_FREE(x); } END: if (c) NAG_FREE(c); if (v) NAG_FREE(v); if (wmean) NAG_FREE(wmean); if (wt) NAG_FREE(wt); if (x) NAG_FREE(x); return exit_status; }