ZDRVAB
Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
June 2010
June 2010
Purpose
ZDRVAB tests ZCGESV
Arguments
| DOTYPE |
(input) LOGICAL array, dimension (NTYPES)
The matrix types to be used for testing. Matrices of type j
(for 1 <= j <= NTYPES) are used for testing if DOTYPE(j) = .TRUE.; if DOTYPE(j) = .FALSE., then type j is not used. |
| NM |
(input) INTEGER
The number of values of M contained in the vector MVAL.
|
| MVAL |
(input) INTEGER array, dimension (NM)
The values of the matrix row dimension M.
|
| NNS |
(input) INTEGER
The number of values of NRHS contained in the vector NSVAL.
|
| NSVAL |
(input) INTEGER array, dimension (NNS)
The values of the number of right hand sides NRHS.
|
| THRESH |
(input) DOUBLE PRECISION
The threshold value for the test ratios. A result is
included in the output file if RESULT >= 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) COMPLEX*16 array, dimension (NMAX*NMAX)
|
| AFAC |
(workspace) COMPLEX*16 array, dimension (NMAX*NMAX)
|
| B |
(workspace) COMPLEX*16 array, dimension (NMAX*NSMAX)
where NSMAX is the largest entry in NSVAL.
|
| X |
(workspace) COMPLEX*16 array, dimension (NMAX*NSMAX)
|
| WORK |
(workspace) COMPLEX*16 array, dimension
(NMAX*max(3,NSMAX*2))
|
| RWORK |
(workspace) DOUBLE PRECISION array, dimension
NMAX
|
| SWORK |
(workspace) COMPLEX array, dimension
(NMAX*(NSMAX+NMAX))
|
| IWORK |
(workspace) INTEGER array, dimension
NMAX
|
| NOUT |
(input) INTEGER
The unit number for output.
|