/* nag_matop_ztpttr (f01vdc) Example Program.
*
* Copyright 2023 Numerical Algorithms Group.
*
* Mark 29.2, 2023.
*/
#include <nag.h>
#include <stdio.h>
int main(void) {
/* Scalars */
Integer exit_status = 0, indent = 0, ncols = 80, i, j, pda;
Integer lenap, n;
Complex *a = 0, *ap = 0;
/* Arrays */
char nag_enum_arg[40], form[] = "%5.2f";
/* Nag Types */
Nag_OrderType order;
Nag_UploType uplo;
Nag_MatrixType matrix;
NagError fail;
#ifdef NAG_COLUMN_MAJOR
order = Nag_ColMajor;
#define KU(I, J) (I + J * (J + 1) / 2)
#define KL(I, J) (J * (n - 1) - J * (J - 1) / 2 + I)
#else
order = Nag_RowMajor;
#define KL(I, J) (J + I * (I + 1) / 2)
#define KU(I, J) (I * (n - 1) - I * (I - 1) / 2 + J)
#endif
INIT_FAIL(fail);
printf("nag_matop_ztpttr (f01vdc) Example Program Results\n\n");
/* Skip heading in data file */
scanf("%*[^\n] ");
scanf("%" NAG_IFMT "%*[^\n] ", &n);
scanf("%39s %*[^\n] ", nag_enum_arg);
pda = n;
lenap = (n * (n + 1)) / 2;
if (!(a = NAG_ALLOC(pda * n, Complex)) || !(ap = NAG_ALLOC(lenap, Complex))) {
printf("Allocation failure\n");
exit_status = -1;
goto END;
}
uplo = (Nag_UploType)nag_enum_name_to_value(nag_enum_arg);
/* Read the packed vector ap using macros KL or KU. */
for (i = 0; i < n; i++) {
if (uplo == Nag_Upper) {
for (j = i; j < n; j++)
scanf(" ( %lf , %lf )", &ap[KU(i, j)].re, &ap[KU(i, j)].im);
} else {
for (j = 0; j <= i; j++)
scanf(" ( %lf , %lf )", &ap[KL(i, j)].re, &ap[KL(i, j)].im);
}
}
/* Print the packed vector */
printf(" Packed Array AP (printed using KL/KU macros):\n\n");
for (i = 0; i < n; i++) {
if (uplo == Nag_Upper) {
printf(" ");
for (j = 0; j < i; j++)
printf("%15s", " ");
for (j = i; j < n; j++)
printf(" (%5.2f,%5.2f)", ap[KU(i, j)].re, ap[KU(i, j)].im);
} else {
for (j = 0; j <= i; j++)
printf(" (%5.2f,%5.2f)", ap[KL(i, j)].re, ap[KL(i, j)].im);
}
printf("\n");
}
/* Convert to triangular matrix from packed vector to full form using
* nag_matop_ztpttr (f01vdc).
*/
nag_matop_ztpttr(order, uplo, n, ap, a, pda, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_matop_ztpttr (f01vdc).\n%s\n", fail.message);
exit_status = 1;
goto END;
}
/* Print the unpacked matrix. */
matrix = (uplo == Nag_Upper ? Nag_UpperMatrix : Nag_LowerMatrix);
/* nag_file_print_matrix_complex_gen_comp (x04dbc).
* Print complex general matrix (comprehensive).
*/
fflush(stdout);
nag_file_print_matrix_complex_gen_comp(
order, matrix, Nag_NonUnitDiag, n, n, a, pda, Nag_BracketForm, form,
"Unpacked Matrix A:", Nag_IntegerLabels, NULL, Nag_IntegerLabels, NULL,
ncols, indent, NULL, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_file_print_matrix_complex_gen_comp (x04dbc).\n%s\n",
fail.message);
exit_status = 1;
}
END:
NAG_FREE(a);
NAG_FREE(ap);
return exit_status;
}