/* nag_dhgeqz (f08xec) Example Program. * * Copyright 2001 Numerical Algorithms Group. * * Mark 7, 2001. */ #include #include #include #include #include int main(void) { /* Scalars */ Integer i, ihi, ilo, irows, j, n, pda, pdb; Integer alpha_len, beta_len, scale_len, tau_len; Integer exit_status=0; NagError fail; Nag_OrderType order; /* Arrays */ double *a=0, *alphai=0, *alphar=0, *b=0, *beta=0, *lscale=0; double *q=0, *rscale=0, *tau=0, *z=0; #ifdef NAG_COLUMN_MAJOR #define A(I,J) a[(J-1)*pda + I - 1] #define B(I,J) b[(J-1)*pdb + I - 1] order = Nag_ColMajor; #else #define A(I,J) a[(I-1)*pda + J - 1] #define B(I,J) b[(I-1)*pdb + J - 1] order = Nag_RowMajor; #endif INIT_FAIL(fail); Vprintf("f08xec Example Program Results\n\n"); /* Skip heading in data file */ Vscanf("%*[^\n] "); Vscanf("%ld%*[^\n] ", &n); #ifdef NAG_COLUMN_MAJOR pda = n; pdb = n; #else pda = n; pdb = n; #endif alpha_len = n; beta_len = n; scale_len = n; tau_len = n; /* Allocate memory */ if ( !(a = NAG_ALLOC(n * n, double)) || !(alphai = NAG_ALLOC(alpha_len, double)) || !(alphar = NAG_ALLOC(alpha_len, double)) || !(b = NAG_ALLOC(n * n, double)) || !(beta = NAG_ALLOC(beta_len, double)) || !(lscale = NAG_ALLOC(scale_len, double)) || !(q = NAG_ALLOC(1 * 1, double)) || !(rscale = NAG_ALLOC(scale_len, double)) || !(tau = NAG_ALLOC(tau_len, double)) || !(z = NAG_ALLOC(1 * 1, double)) ) { Vprintf("Allocation failure\n"); exit_status = -1; goto END; } /* READ matrix A from data file */ for (i = 1; i <= n; ++i) { for (j = 1; j <= n; ++j) Vscanf("%lf", &A(i,j)); } Vscanf("%*[^\n] "); /* READ matrix B from data file */ for (i = 1; i <= n; ++i) { for (j = 1; j <= n; ++j) Vscanf("%lf", &B(i,j)); } Vscanf("%*[^\n] "); /* Balance matrix pair (A,B) */ f08whc(order, Nag_DoBoth, n, a, pda, b, pdb, &ilo, &ihi, lscale, rscale, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from f08whc.\n%s\n", fail.message); exit_status = 1; goto END; } /* Matrix A after balancing */ x04cac(order, Nag_GeneralMatrix, Nag_NonUnitDiag, n, n, a, pda, "Matrix A after balancing", 0, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from x04cac.\n%s\n", fail.message); exit_status = 1; goto END; } Vprintf("\n"); /* Matrix B after balancing */ x04cac(order, Nag_GeneralMatrix, Nag_NonUnitDiag, n, n, b, pdb, "Matrix B after balancing", 0, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from x04cac.\n%s\n", fail.message); exit_status = 1; goto END; } Vprintf("\n"); /* Reduce B to triangular form using QR */ irows = ihi + 1 - ilo; f08aec(order, irows, irows, &B(ilo, ilo), pdb, tau, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from f08aec.\n%s\n", fail.message); exit_status = 1; goto END; } /* Apply the orthogonal transformation to matrix A */ f08agc(order, Nag_LeftSide, Nag_Trans, irows, irows, irows, &B(ilo, ilo), pdb, tau, &A(ilo, ilo), pda, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from f08agc.\n%s\n", fail.message); exit_status = 1; goto END; } /* Compute the generalized Hessenberg form of (A,B) */ f08wec(order, Nag_NotQ, Nag_NotZ, irows, 1, irows, &A(ilo, ilo), pda, &B(ilo, ilo), pdb, q, 1, z, 1, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from f08wec.\n%s\n", fail.message); exit_status = 1; goto END; } /* Matrix A in generalized Hessenberg form */ x04cac(order, Nag_GeneralMatrix, Nag_NonUnitDiag, n, n, a, pda, "Matrix A in Hessenberg form", 0, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from x04cac.\n%s\n", fail.message); exit_status = 1; goto END; } Vprintf("\n"); /* Matrix B in generalized Hessenberg form */ x04cac(order, Nag_GeneralMatrix, Nag_NonUnitDiag, n, n, b, pdb, "Matrix B is triangular", 0, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from x04cac.\n%s\n", fail.message); exit_status = 1; goto END; } /* Compute the generalized Schur form */ f08xec(order, Nag_EigVals, Nag_NotQ, Nag_NotZ, n, ilo, ihi, a, pda, b, pdb, alphar, alphai, beta, q, 1, z, 1, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from f08xec.\n%s\n", fail.message); exit_status = 1; goto END; } /* Print the generalized eigenvalues */ Vprintf("\n Generalized eigenvalues\n"); for (i = 1; i <= n; ++i) { if (beta[i-1] != 0.0) { Vprintf(" %4ld (%7.3f,%7.3f)\n", i, alphar[i-1]/beta[i-1], alphai[i-1]/beta[i-1]); } else Vprintf(" %4ldEigenvalue is infinite\n", i); } END: if (a) NAG_FREE(a); if (alphai) NAG_FREE(alphai); if (alphar) NAG_FREE(alphar); if (b) NAG_FREE(b); if (beta) NAG_FREE(beta); if (lscale) NAG_FREE(lscale); if (q) NAG_FREE(q); if (rscale) NAG_FREE(rscale); if (tau) NAG_FREE(tau); if (z) NAG_FREE(z); return exit_status; }