/* nag_zhbgv (f08unc) Example Program. * * Copyright 2011 Numerical Algorithms Group. * * Mark 23, 2011. */ #include #include #include #include #include int main(void) { /* Scalars */ Integer i, j, ka, kb, n, pdab, pdbb, pdz, zsize; Integer exit_status = 0; /* Arrays */ Complex *ab = 0, *bb = 0, *z = 0; double *w = 0; char nag_enum_arg[40]; /* Nag Types */ NagError fail; Nag_UploType uplo; Nag_OrderType order; Nag_JobType job; #ifdef NAG_COLUMN_MAJOR #define AB_UPPER(I, J) ab[(J-1)*pdab + ka + I - J] #define AB_LOWER(I, J) ab[(J-1)*pdab + I - J] #define BB_UPPER(I, J) bb[(J-1)*pdbb + kb + I - J] #define BB_LOWER(I, J) bb[(J-1)*pdbb + I - J] order = Nag_ColMajor; #else #define AB_UPPER(I, J) ab[(I-1)*pdab + J - I] #define AB_LOWER(I, J) ab[(I-1)*pdab + ka + J - I] #define BB_UPPER(I, J) bb[(I-1)*pdbb + J - I] #define BB_LOWER(I, J) bb[(I-1)*pdbb + kb + J - I] order = Nag_RowMajor; #endif INIT_FAIL(fail); printf("nag_zhbgv (f08unc) Example Program Results\n\n"); /* Skip heading in data file */ scanf("%*[^\n]"); scanf("%ld%ld%ld%*[^\n]", &n, &ka, &kb); if (n < 0 || ka < kb || kb < 0) { printf("Invalid n, ka or kb\n"); exit_status = 1; goto END; } scanf(" %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); scanf(" %s%*[^\n]", nag_enum_arg); job = (Nag_JobType) nag_enum_name_to_value(nag_enum_arg); if (job==Nag_EigVals) { zsize = 1; pdz = 1; } else { zsize = n*n; pdz = n; } pdab = ka + 1; pdbb = kb + 1; /* Allocate memory */ if (!(ab = NAG_ALLOC((ka+1) * n, Complex)) || !(bb = NAG_ALLOC((kb+1) * n, Complex)) || !(z = NAG_ALLOC(zsize, Complex)) || !(w = NAG_ALLOC(n, double))) { printf("Allocation failure\n"); exit_status = -1; goto END; } /* Read the triangular parts of the matrices A and B from data file */ if (uplo == Nag_Upper) { for (i = 1; i <= n; ++i) for (j = i; j <= MIN(i+ka, n); ++j) scanf(" ( %lf , %lf )", &AB_UPPER(i, j).re, &AB_UPPER(i, j).im); scanf("%*[^\n]"); for (i = 1; i <= n; ++i) for (j = i; j <= MIN(i+kb, n); ++j) scanf(" ( %lf , %lf )", &BB_UPPER(i, j).re, &BB_UPPER(i, j).im); } else { for (i = 1; i <= n; ++i) for (j = MAX(1, i-ka); j <= i; ++j) scanf(" ( %lf , %lf )", &AB_LOWER(i, j).re, &AB_LOWER(i, j).im); scanf("%*[^\n]"); for (i = 1; i <= n; ++i) for (j = MAX(1, i-kb); j <= i; ++j) scanf(" ( %lf , %lf )", &BB_LOWER(i, j).re, &BB_LOWER(i, j).im); } scanf("%*[^\n]"); /* Solve the generalized Hermitian band eigenvalue problem A*x = lambda*B*x * using nag_zhbgv (f08unc). */ nag_zhbgv(order, job, uplo, n, ka, kb, ab, pdab, bb, pdbb, w, z, pdz, &fail); if (fail.code != NE_NOERROR) { printf("Error from nag_zhbgv (f08unc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Print eigensolution */ printf(" Eigenvalues\n "); for (j = 0; j < n; ++j) printf(" %10.4f%s", w[j], j%6 == 5?"\n":" "); printf("\n"); if (job==Nag_DoBoth) { /* nag_gen_complx_mat_print (x04dac): Print Matrix of eigenvectors Z. */ printf("\n"); fflush(stdout); nag_gen_complx_mat_print(order, Nag_GeneralMatrix, Nag_NonUnitDiag, n, n, z, pdz, "Eigenvectors", 0, &fail); if (fail.code != NE_NOERROR) { printf("Error from nag_gen_complx_mat_print (x04dac).\n%s\n", fail.message); exit_status = 1; } } END: if (ab) NAG_FREE(ab); if (bb) NAG_FREE(bb); if (z) NAG_FREE(z); if (w) NAG_FREE(w); return exit_status; }