/* nag_zpttrf (f07jrc) Example Program. * * Copyright 2004 Numerical Algorithms Group. * * Mark 23, 2011. */ #include #include #include #include int main(void) { /* Scalars */ Integer exit_status = 0, i, n; /* Arrays */ Complex *e = 0; double *d = 0; /* Nag Types */ NagError fail; INIT_FAIL(fail); printf("nag_zpttrf (f07jrc) Example Program Results\n\n"); /* Skip heading in data file */ scanf("%*[^\n]"); scanf("%ld%*[^\n]", &n); if (n < 0) { printf("Invalid n\n"); exit_status = 1; goto END; } /* Allocate memory */ if (!(e = NAG_ALLOC(n-1, Complex)) || !(d = NAG_ALLOC(n, double))) { printf("Allocation failure\n"); exit_status = -1; goto END; } /* Read the lower bidiagonal part of the tridiagonal matrix A from */ /* data file */ for (i = 0; i < n; ++i) scanf("%lf", &d[i]); scanf("%*[^\n]"); for (i = 0; i < n - 1; ++i) scanf(" ( %lf , %lf )", &e[i].re, &e[i].im); scanf("%*[^\n]"); /* Factorize the tridiagonal matrix A using nag_zpttrf (f07jrc). */ nag_zpttrf(n, d, e, &fail); if (fail.code != NE_NOERROR) { printf("Error from nag_zpttrf (f07jrc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Print details of the factorization */ printf("Details of factorization\n\n"); printf(" The diagonal elements of D\n"); for (i = 0; i < n; ++i) printf("%9.4f%s", d[i], i%8 == 7?"\n":" "); printf("\n\n Sub-diagonal elements of the Cholesky factor L\n"); for (i = 0; i < n-1; ++i) printf("(%8.4f, %8.4f)%s", e[i].re, e[i].im, i%8 == 7?"\n":" "); printf("\n"); END: if (e) NAG_FREE(e); if (d) NAG_FREE(d); return exit_status; }