/* nag_zggev3 (f08wqc) Example Program.
*
* NAGPRODCODE Version.
*
* Copyright 2016 Numerical Algorithms Group.
*
* Mark 26, 2016.
*/
#include <stdio.h>
#include <nag.h>
#include <nag_stdlib.h>
#include <naga02.h>
#include <nagf08.h>
#include <nagx02.h>
#include <nagx04.h>
#ifdef __cplusplus
extern "C"
{
#endif
static Integer normalize_vectors(Integer n, Complex v[], const char *title);
#ifdef __cplusplus
}
#endif
int main(void)
{
/* Scalars */
Integer i, isinf, j, n, pda, pdb, pdvl, pdvr;
Integer exit_status = 0;
/* Arrays */
Complex *a = 0, *alpha = 0, *b = 0, *beta = 0, *vl = 0, *vr = 0;
char nag_enum_arg[40];
/* Nag Types */
NagError fail;
Nag_OrderType order;
Nag_LeftVecsType jobvl;
Nag_RightVecsType jobvr;
INIT_FAIL(fail);
printf("nag_zggev3 (f08wqc) Example Program Results\n");
/* Skip heading in data file */
scanf("%*[^\n]");
scanf("%" NAG_IFMT "%*[^\n]", &n);
if (n < 0) {
printf("Invalid n\n");
exit_status = 1;
goto END;
}
#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
scanf(" %39s%*[^\n]", nag_enum_arg);
/* nag_enum_name_to_value (x04nac).
* Converts NAG enum member name to value
*/
jobvl = (Nag_LeftVecsType) nag_enum_name_to_value(nag_enum_arg);
scanf(" %39s%*[^\n]", nag_enum_arg);
jobvr = (Nag_RightVecsType) nag_enum_name_to_value(nag_enum_arg);
pda = n;
pdb = n;
pdvl = (jobvl == Nag_LeftVecs ? n : 1);
pdvr = (jobvr == Nag_RightVecs ? n : 1);
/* Allocate memory */
if (!(a = NAG_ALLOC(n * n, Complex)) ||
!(alpha = NAG_ALLOC(n, Complex)) ||
!(b = NAG_ALLOC(n * n, Complex)) ||
!(beta = NAG_ALLOC(n, Complex)) ||
!(vl = NAG_ALLOC(pdvl * pdvl, Complex)) ||
!(vr = NAG_ALLOC(pdvr * pdvr, Complex)))
{
printf("Allocation failure\n");
exit_status = -1;
goto END;
}
/* Read in the matrices A and B */
for (i = 1; i <= n; ++i)
for (j = 1; j <= n; ++j)
scanf(" ( %lf , %lf )", &A(i, j).re, &A(i, j).im);
scanf("%*[^\n]");
for (i = 1; i <= n; ++i)
for (j = 1; j <= n; ++j)
scanf(" ( %lf , %lf )", &B(i, j).re, &B(i, j).im);
scanf("%*[^\n]");
/* Solve the generalized eigenvalue problem Ax = lambda Bx using the
* level 3 blocked routine nag_zggev3 (f08wqc) which returns:
* - eigenvalues as alpha[]./beta[];
* - left and right eigenvectors in vl and vr respectively.
*/
/* Solve the generalized eigenvalue problem using nag_zggev3 (f08wqc). */
nag_zggev3(order, jobvl, jobvr, n, a, pda, b, pdb, alpha, beta, vl, pdvl, vr,
pdvr, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_zggev3 (f08wqc).\n%s\n", fail.message);
exit_status = 2;
goto END;
}
isinf = 0;
for (j = 0; j < n; ++j) {
/* Check for infinite eigenvalues */
if (nag_complex_abs(beta[j]) < x02ajc()) {
isinf = j + 1;
} else {
alpha[j] = nag_complex_divide(alpha[j],beta[j]);
}
}
if (isinf) {
printf("Eigenvalue %2" NAG_IFMT " is numerically infinite.\n",isinf);
} else {
/* Print the (finite) eigenvalues
* using nag_gen_complx_mat_print (x04dac).
*/
fflush(stdout);
printf("\n");
nag_gen_complx_mat_print(Nag_ColMajor, Nag_GeneralMatrix, Nag_NonUnitDiag,
1, n, alpha, 1, "Eigenvalues:", NULL, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_gen_complx_mat_print (x04dac).\n%s\n",
fail.message);
exit_status = 3;
goto END;
}
}
/* Re-normalize the eigenvectors and print */
if (jobvl == Nag_LeftVecs) {
exit_status = normalize_vectors(n, vl, "Left Eigenvectors:");
if (exit_status) goto END;
}
if (jobvr == Nag_RightVecs) {
exit_status = normalize_vectors(n, vr, "Right Eigenvectors:");
}
END:
NAG_FREE(a);
NAG_FREE(alpha);
NAG_FREE(b);
NAG_FREE(beta);
NAG_FREE(vl);
NAG_FREE(vr);
return exit_status;
}
static Integer normalize_vectors(Integer n, Complex v[], const char *title)
{
Complex scal;
double r, rr;
Integer errors = 0, i, j, k;
Nag_OrderType order;
NagError fail;
INIT_FAIL(fail);
#ifdef NAG_COLUMN_MAJOR
#define V(I, J) v[(J-1)*n + I - 1]
order = Nag_ColMajor;
#else
#define V(I, J) v[(I-1)*n + J - 1]
order = Nag_RowMajor;
#endif
/* Re-normalize the eigenvectors, largest absolute element real */
for (i=1; i<=n; i++) {
k = 0;
r = -1.0;
for (j=1; j<=n; j++) {
rr = nag_complex_abs(V(j,i));
if (rr>r) {
r = rr;
k = j;
}
}
scal.re = V(k,i).re/r;
scal.im = -V(k,i).im/r;
for (j=1; j<=n; j++) {
V(j,i) = nag_complex_multiply(V(j,i),scal);
}
V(k,i).im = 0.0;
}
printf("\n");
/* Print eigenvectors using nag_gen_complx_mat_print (x04dac). */
fflush(stdout);
nag_gen_complx_mat_print(order, Nag_GeneralMatrix, Nag_NonUnitDiag, n,
n, v, n, title, 0, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_gen_complx_mat_print (x04dac).\n%s\n",
fail.message);
errors = 5;
}
#undef V
return errors;
}