/* nag_rand_orthog_matrix (g05pxc) Example Program. * * Copyright 2008, Numerical Algorithms Group. * * Mark 9, 2009. */ /* Pre-processor includes */ #include #include #include #include #include #include #define A(I, J) a[I*pda + J] int main(int argc, char *argv[]) { FILE *fpout; /* Integer scalar and array declarations */ Integer exit_status = 0; Integer i, j, lstate, a_size; Integer *state = 0; Integer pda; /* NAG structures */ NagError fail; /* Double scalar and array declarations */ double *a = 0; /* Set the size of the matrix to be generated */ Integer n = 4; Integer m = 4; /* Set A to the identity matrix on input */ Nag_InitializeA init = Nag_InitializeI; /* Multiple on the right hand side */ Nag_SideType side = Nag_RightSide; /* Choose the base generator */ Nag_BaseRNG genid = Nag_Basic; Integer subid = 0; /* Set the seed */ Integer seed[] = { 1762543 }; Integer lseed = 1; /* Initialise the error structure */ INIT_FAIL(fail); /* Check for command-line IO options */ fpout = nag_example_file_io(argc, argv, "-results", NULL); fprintf(fpout, "nag_rand_orthog_matrix (g05pxc) Example Program Results\n\n"); /* Get the length of the state array */ lstate = -1; nag_rand_init_repeatable(genid, subid, seed, lseed, state, &lstate, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_init_repeatable (g05kfc).\n%s\n", fail.message); exit_status = 1; goto END; } pda = n; a_size = pda * m; /* Allocate arrays */ if (!(a = NAG_ALLOC(a_size, double)) || !(state = NAG_ALLOC(lstate, Integer))) { fprintf(fpout, "Allocation failure\n"); exit_status = -1; goto END; } /* Initialise the generator to a repeatable sequence */ nag_rand_init_repeatable(genid, subid, seed, lseed, state, &lstate, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_init_repeatable (g05kfc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Generate the random orthogonal matrix*/ nag_rand_orthog_matrix(side, init, m, n, state, a, pda, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_orthog_matrix (g05pxc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Display the results */ for (i = 0; i < m; i++) { fprintf(fpout, " "); for (j = 0; j < n; j++) fprintf(fpout, "%8.3f%s", A(i, j), (j+1)%4?" ":"\n"); if (n%4) fprintf(fpout, "\n"); } END: if (fpout != stdout) fclose(fpout); if (a) NAG_FREE(a); if (state) NAG_FREE(state); return exit_status; }