/* nag_complex_lu (f03ahc) Example Program. * * Copyright 1990 Numerical Algorithms Group. * * Mark 1A revised, (Oct 1990). * Mark 8 revised, 2004. */ #include #include #include #include #include #define A(I,J) a[(I)*tda + J] int main(void) { Complex *a=0, det; Integer dete, exit_status=0, i, j, n, *pivot=0, tda; NagError fail; INIT_FAIL(fail); Vprintf("nag_complex_lu (f03ahc) Example Program Results\n"); Vscanf("%*[^\n]"); /* Skip heading in data file */ Vscanf("%ld",&n); if (n >=1) { if ( !( pivot = NAG_ALLOC(n, Integer)) || !( a = NAG_ALLOC(n*n, Complex)) ) { Vprintf("Allocation failure\n"); exit_status = -1; goto END; } tda = n; } else { Vprintf("Invalid n.\n"); exit_status = 1; return exit_status; } for (i = 0; i < n; i++) for (j = 0; j < n; j++) Vscanf(" ( %lf, %lf ) ", &A(i,j).re, &A(i,j).im); /* nag_complex_lu (f03ahc). * LU factorization and determinant of complex matrix */ nag_complex_lu(n, a, tda, pivot, &det, &dete, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from nag_complex_lu (f03ahc).\n%s\n", fail.message); exit_status = 1; goto END; } else { Vprintf("Array a after factorization\n"); for (i=0; i