DCKGLM
   Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
November 2006
November 2006
Purpose
DCKGLM tests DGGGLM - subroutine for solving generalized linear
model problem.
model problem.
Arguments
| NN | 
 
(input) INTEGER
 
The number of values of N, M and P contained in the vectors 
NVAL, MVAL and PVAL.  | 
| MVAL | 
 
(input) INTEGER array, dimension (NN)
 
The values of the matrix column dimension M. 
 | 
| PVAL | 
 
(input) INTEGER array, dimension (NN)
 
The values of the matrix column dimension P. 
 | 
| NVAL | 
 
(input) INTEGER array, dimension (NN)
 
The values of the matrix row dimension N. 
 | 
| NMATS | 
 
(input) INTEGER
 
The number of matrix types to be tested for each combination 
of matrix dimensions. If NMATS >= NTYPES (the maximum number of matrix types), then all the different types are generated for testing. If NMATS < NTYPES, another input line is read to get the numbers of the matrix types to be used.  | 
| ISEED | 
 
(input/output) INTEGER array, dimension (4)
 
On entry, the seed of the random number generator.  The array 
elements should be between 0 and 4095, otherwise they will be reduced mod 4096, and ISEED(4) must be odd. On exit, the next seed in the random number sequence after all the test matrices have been generated.  | 
| THRESH | 
 
(input) DOUBLE PRECISION
 
The threshold value for the test ratios.  A result is 
included in the output file if RESID >= THRESH. To have every test ratio printed, use THRESH = 0.  | 
| NMAX | 
 
(input) INTEGER
 
The maximum value permitted for M or N, used in dimensioning 
the work arrays.  | 
| A | 
 
(workspace) DOUBLE PRECISION array, dimension (NMAX*NMAX)
 
 | 
| AF | 
 
(workspace) DOUBLE PRECISION array, dimension (NMAX*NMAX)
 
 | 
| B | 
 
(workspace) DOUBLE PRECISION array, dimension (NMAX*NMAX)
 
 | 
| BF | 
 
(workspace) DOUBLE PRECISION array, dimension (NMAX*NMAX)
 
 | 
| X | 
 
(workspace) DOUBLE PRECISION array, dimension (4*NMAX)
 
 | 
| RWORK | 
 
(workspace) DOUBLE PRECISION array, dimension (NMAX)
 
 | 
| WORK | 
 
(workspace) DOUBLE PRECISION array, dimension (NMAX*NMAX)
 
 | 
| NIN | 
 
(input) INTEGER
 
The unit number for input. 
 | 
| NOUT | 
 
(input) INTEGER
 
The unit number for output. 
 | 
| INFO | 
 
(output) INTEGER
 
= 0 :  successful exit 
> 0 : If DLATMS returns an error code, the absolute value of it is returned.  |