/* nag_dsyevd (f08fcc) Example Program. * * Copyright 2001 Numerical Algorithms Group. * * Mark 7, 2001. */ #include #include #include #include #include int main(int argc, char *argv[]) { FILE *fpin, *fpout; char *outfile = 0; /* Scalars */ Integer i, j, n, pda, w_len; Integer exit_status = 0; NagError fail; Nag_JobType job; Nag_UploType uplo; Nag_OrderType order; /* Arrays */ char nag_enum_arg[40]; double *a = 0, *w = 0; #ifdef NAG_COLUMN_MAJOR #define A(I, J) a[(J - 1) * pda + I - 1] order = Nag_ColMajor; #else #define A(I, J) a[(I - 1) * pda + J - 1] order = Nag_RowMajor; #endif INIT_FAIL(fail); /* Check for command-line IO options */ fpin = nag_example_file_io(argc, argv, "-data", NULL); fpout = nag_example_file_io(argc, argv, "-results", NULL); (void) nag_example_file_io(argc, argv, "-nag_write", &outfile); fprintf(fpout, "nag_dsyevd (f08fcc) Example Program Results\n\n"); /* Skip heading in data file */ fscanf(fpin, "%*[^\n] "); fscanf(fpin, "%ld%*[^\n] ", &n); pda = n; w_len = n; /* Allocate memory */ if (!(a = NAG_ALLOC(n * n, double)) || !(w = NAG_ALLOC(w_len, double))) { fprintf(fpout, "Allocation failure\n"); exit_status = -1; goto END; } /* Read whether Upper or Lower part of A is stored */ fscanf(fpin, "%s%*[^\n] ", nag_enum_arg); /* nag_enum_name_to_value(x04nac). * Converts NAG enum member name to value */ uplo = (Nag_UploType) nag_enum_name_to_value(nag_enum_arg); /* Read A from data file */ if (uplo == Nag_Upper) { for (i = 1; i <= n; ++i) { for (j = i; j <= n; ++j) fscanf(fpin, "%lf", &A(i, j)); } fscanf(fpin, "%*[^\n] "); } else { for (i = 1; i <= n; ++i) { for (j = 1; j <= i; ++j) fscanf(fpin, "%lf", &A(i, j)); } fscanf(fpin, "%*[^\n] "); } /* Read type of job to be performed */ fscanf(fpin, "%s%*[^\n] ", nag_enum_arg); job = (Nag_JobType) nag_enum_name_to_value(nag_enum_arg); /* Calculate all the eigenvalues and eigenvectors of A */ /* nag_dsyevd (f08fcc). * All eigenvalues and optionally all eigenvectors of real * symmetric matrix (divide-and-conquer) */ nag_dsyevd(order, job, uplo, n, a, pda, w, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_dsyevd (f08fcc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Print eigenvalues and eigenvectors */ fprintf(fpout, "Eigenvalues\n"); for (i = 0; i < n; ++i) fprintf(fpout, " %8.4lf", w[i]); fprintf(fpout, "\n"); /* nag_gen_real_mat_print (x04cac). * Print real general matrix (easy-to-use) */ if (outfile) fclose(fpout); nag_gen_real_mat_print(order, Nag_GeneralMatrix, Nag_NonUnitDiag, n, n, a, pda, "Eigenvectors", outfile, &fail); if (outfile && !(fpout = fopen(outfile, "a"))) { exit_status = 2; goto END; } if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_gen_real_mat_print (x04cac).\n%s\n", fail.message); exit_status = 1; goto END; } END: if (fpin != stdin) fclose(fpin); if (fpout != stdout) fclose(fpout); if (a) NAG_FREE(a); if (w) NAG_FREE(w); return exit_status; }