/* nag_lapackeig_zgeqrt (f08apc) Example Program.
*
* Copyright 2024 Numerical Algorithms Group.
*
* Mark 30.1, 2024.
*/
#include <nag.h>
int main(void) {
/* Scalars */
double rnorm;
Integer exit_status = 0;
Integer pda, pdb, pdt;
Integer i, j, m, n, nb, nrhs;
/* Arrays */
Complex *a = 0, *b = 0, *t = 0;
/* Nag Types */
Nag_OrderType order;
NagError fail;
#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);
printf("nag_lapackeig_zgeqrt (f08apc) Example Program Results\n\n");
fflush(stdout);
/* Skip heading in data file */
scanf("%*[^\n]");
scanf("%" NAG_IFMT "%" NAG_IFMT "%" NAG_IFMT "%*[^\n]", &m, &n, &nrhs);
nb = MIN(m, n);
if (!(a = NAG_ALLOC(m * n, Complex)) || !(b = NAG_ALLOC(m * nrhs, Complex)) ||
!(t = NAG_ALLOC(nb * MIN(m, n), Complex))) {
printf("Allocation failure\n");
exit_status = -1;
goto END;
}
#ifdef NAG_COLUMN_MAJOR
pda = m;
pdb = m;
pdt = nb;
#else
pda = n;
pdb = nrhs;
pdt = MIN(m, n);
#endif
/* Read A and B from data file */
for (i = 1; i <= m; ++i)
for (j = 1; j <= n; ++j)
scanf(" ( %lf , %lf )", &A(i, j).re, &A(i, j).im);
scanf("%*[^\n]");
for (i = 1; i <= m; ++i)
for (j = 1; j <= nrhs; ++j)
scanf(" ( %lf , %lf )", &B(i, j).re, &B(i, j).im);
scanf("%*[^\n]");
/* nag_lapackeig_zgeqrt (f08apc).
* Compute the QR factorization of A by recursive algorithm.
*/
nag_lapackeig_zgeqrt(order, m, n, nb, a, pda, t, pdt, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_lapackeig_zgeqrt (f08apc).\n%s\n", fail.message);
exit_status = 1;
goto END;
}
/* nag_lapackeig_zgemqrt (f08aqc).
* Compute C = (C1) = (Q^H)*B, storing the result in B.
* (C2)
* by applying Q^H from left.
*/
nag_lapackeig_zgemqrt(order, Nag_LeftSide, Nag_ConjTrans, m, nrhs, n, nb, a,
pda, t, pdt, b, pdb, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_lapackeig_zgemqrt (f08aqc).\n%s\n", fail.message);
exit_status = 2;
goto END;
}
/* nag_lapacklin_ztrtrs (f07tsc).
* Compute least squares solutions by back-substitution in R*X = C1.
*/
nag_lapacklin_ztrtrs(order, Nag_Upper, Nag_NoTrans, Nag_NonUnitDiag, n, nrhs,
a, pda, b, pdb, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_lapacklin_ztrtrs (f07tsc).\n%s\n", fail.message);
exit_status = 3;
goto END;
}
/* nag_file_print_matrix_complex_gen_comp (x04dbc).
* Print least squares solutions.
*/
nag_file_print_matrix_complex_gen_comp(
order, Nag_GeneralMatrix, Nag_NonUnitDiag, n, nrhs, b, pdb,
Nag_BracketForm, "%7.4f", "Least squares solution(s)", Nag_IntegerLabels,
0, Nag_IntegerLabels, 0, 80, 0, 0, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_file_print_matrix_complex_gen_comp (x04dbc).\n%s\n",
fail.message);
exit_status = 4;
goto END;
}
printf("\n Square root(s) of the residual sum(s) of squares\n");
for (j = 1; j <= nrhs; j++) {
/* nag_blast_zge_norm (f16uac).
* Compute and print estimate of the square root of the residual
* sum of squares.
*/
nag_blast_zge_norm(order, Nag_FrobeniusNorm, m - n, 1, &B(n + 1, j), pdb,
&rnorm, &fail);
if (fail.code != NE_NOERROR) {
printf("\nError from nag_blast_zge_norm (f16uac).\n%s\n", fail.message);
exit_status = 5;
goto END;
}
printf(" %11.2e ", rnorm);
}
printf("\n");
END:
NAG_FREE(a);
NAG_FREE(b);
NAG_FREE(t);
return exit_status;
}