/* nag_complex_qr (f01rcc) Example Program. * * Copyright 1990 Numerical Algorithms Group. * * Mark 1, 1990. * Mark 8 revised, 2004. */ #include #include #include #include #define COMPLEX(A) A.re, A.im #define A(I,J) a[(I)*tda + J] int main(void) { Complex *a=0, *theta=0; Integer exit_status=0, i, j, m, n, tda; NagError fail; INIT_FAIL(fail); /* Skip heading in data file */ Vscanf("%*[^\n]"); Vprintf("nag_complex_qr (f01rcc) Example Program Results\n"); Vscanf("%ld%ld", &m, &n); Vprintf("\n"); if (n>=0 && m>=n) { if ( !( a = NAG_ALLOC(m*n, Complex)) || !( theta = NAG_ALLOC(n, Complex)) ) { Vprintf("Allocation failure\n"); exit_status = -1; goto END; } tda = n; } else { Vprintf("Invalid n or m.\n"); exit_status = 1; return exit_status; } for (i=0; i=~n) */ nag_complex_qr(m, n, a, tda, theta, &fail); if (fail.code != NE_NOERROR) { Vprintf("Error from nag_complex_qr (f01rcc).\n%s\n", fail.message); exit_status = 1; goto END; } Vprintf("QR factorization of A\n"); Vprintf("Vector THETA\n"); for (i=0; i