/* nag_isum (f16dlc) Example Program. * * Copyright 2005 Numerical Algorithms Group. * * Mark 9, 2009. */ #include #include #include #include int main(void) { /* Scalars */ Integer exit_status, i, incx, n, sumval, xlen; /* Arrays */ Integer *x = 0; /* Nag Types */ NagError fail; exit_status = 0; INIT_FAIL(fail); printf("nag_isum (f16dlc) Example Program Results\n\n"); /* Skip heading in data file */ scanf("%*[^\n] "); /* Read the number of elements and the increment */ scanf("%ld%ld%*[^\n] ", &n, &incx); xlen = MAX(1, 1 + (n - 1)*ABS(incx)); if (n > 0) { /* Allocate memory */ if (!(x = NAG_ALLOC(xlen, Integer))) { printf("Allocation failure\n"); exit_status = -1; goto END; } } else { printf("Invalid n\n"); exit_status = 1; goto END; } /* Input vector x */ for (i = 0; i < xlen; i = i + incx) scanf("%ld", &x[i]); scanf("%*[^\n] "); /* nag_isum (f16dlc). * Sum elements of an Integer vector */ sumval = nag_isum(n, x, incx, &fail); if (fail.code != NE_NOERROR) { printf("Error from nag_isum (f16dlc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Print the sum */ printf("Sum of elements of x is %5ld\n", sumval); END: if (x) NAG_FREE(x); return exit_status; }