diff options
author | julie <julielangou@users.noreply.github.com> | 2011-10-31 22:21:11 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2011-10-31 22:21:11 +0000 |
commit | 0d9e213c670ab0e68f17d68251412d53250108e1 (patch) | |
tree | 2bcab1c08b84e327b9be345385e2c31e8a26905a /TESTING/EIG/zdrvvx.f | |
parent | 82901cd3e7bb75c73fc3a17fe7bf922289337f97 (diff) | |
download | lapack-0d9e213c670ab0e68f17d68251412d53250108e1.tar.gz lapack-0d9e213c670ab0e68f17d68251412d53250108e1.tar.bz2 lapack-0d9e213c670ab0e68f17d68251412d53250108e1.zip |
Correct Warning detected during Doxygen Generation.
Now each routine should have the correct list of arguments.
This allowed to detect and fix problems in parameter description of many routines.
Diffstat (limited to 'TESTING/EIG/zdrvvx.f')
-rw-r--r-- | TESTING/EIG/zdrvvx.f | 66 |
1 files changed, 61 insertions, 5 deletions
diff --git a/TESTING/EIG/zdrvvx.f b/TESTING/EIG/zdrvvx.f index e1125b7a..e9794cf2 100644 --- a/TESTING/EIG/zdrvvx.f +++ b/TESTING/EIG/zdrvvx.f @@ -361,12 +361,60 @@ *> Leading dimension of LRE. Must be at least max(1,max(NN,12)) *> \endverbatim *> -*> \param[out] RESULT +*> \param[out] RCONDV *> \verbatim -*> RESULT is DOUBLE PRECISION array, dimension (11) -*> The values computed by the seven tests described above. -*> The values are currently limited to 1/ulp, to avoid -*> overflow. +*> RCONDV is DOUBLE PRECISION array, dimension (N) +*> RCONDV holds the computed reciprocal condition numbers +*> for eigenvectors. +*> \endverbatim +*> +*> \param[out] RCNDV1 +*> \verbatim +*> RCNDV1 is DOUBLE PRECISION array, dimension (N) +*> RCNDV1 holds more computed reciprocal condition numbers +*> for eigenvectors. +*> \endverbatim +*> +*> \param[in] RCDVIN +*> \verbatim +*> RCDVIN is DOUBLE PRECISION array, dimension (N) +*> When COMP = .TRUE. RCDVIN holds the precomputed reciprocal +*> condition numbers for eigenvectors to be compared with +*> RCONDV. +*> \endverbatim +*> +*> \param[out] RCONDE +*> \verbatim +*> RCONDE is DOUBLE PRECISION array, dimension (N) +*> RCONDE holds the computed reciprocal condition numbers +*> for eigenvalues. +*> \endverbatim +*> +*> \param[out] RCNDE1 +*> \verbatim +*> RCNDE1 is DOUBLE PRECISION array, dimension (N) +*> RCNDE1 holds more computed reciprocal condition numbers +*> for eigenvalues. +*> \endverbatim +*> +*> \param[in] RCDEIN +*> \verbatim +*> RCDEIN is DOUBLE PRECISION array, dimension (N) +*> When COMP = .TRUE. RCDEIN holds the precomputed reciprocal +*> condition numbers for eigenvalues to be compared with +*> RCONDE. +*> \endverbatim +*> +*> \param[out] SCALE +*> \verbatim +*> SCALE is DOUBLE PRECISION array, dimension (N) +*> Holds information describing balancing of matrix. +*> \endverbatim +*> +*> \param[out] SCALE1 +*> \verbatim +*> SCALE1 is DOUBLE PRECISION array, dimension (N) +*> Holds information describing balancing of matrix. *> \endverbatim *> *> \param[out] WORK @@ -374,6 +422,14 @@ *> WORK is COMPLEX*16 array, dimension (NWORK) *> \endverbatim *> +*> \param[out] RESULT +*> \verbatim +*> RESULT is DOUBLE PRECISION array, dimension (11) +*> The values computed by the seven tests described above. +*> The values are currently limited to 1/ulp, to avoid +*> overflow. +*> \endverbatim +*> *> \param[in] NWORK *> \verbatim *> NWORK is INTEGER |