diff options
author | Henning Thielemann <git@henning-thielemann.de> | 2017-06-03 23:10:37 +0200 |
---|---|---|
committer | Henning Thielemann <git@henning-thielemann.de> | 2017-06-03 23:10:37 +0200 |
commit | 84421c6d3cb6e4b589c476fe8a79b11b088259dd (patch) | |
tree | dab1e2a2d33fc76b97e42b64f3e68331378bf6a2 | |
parent | 0b0dcee3f8c2d2cea5aba274f56018bbdc979e72 (diff) | |
download | lapack-84421c6d3cb6e4b589c476fe8a79b11b088259dd.tar.gz lapack-84421c6d3cb6e4b589c476fe8a79b11b088259dd.tar.bz2 lapack-84421c6d3cb6e4b589c476fe8a79b11b088259dd.zip |
ZCGESV, ZCPOSV; parameter WORK: dimension (N*NRHS) -> (N,NRHS)
analogous to DSGESV, DSPOSV
-rw-r--r-- | SRC/zcgesv.f | 2 | ||||
-rw-r--r-- | SRC/zcposv.f | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SRC/zcgesv.f b/SRC/zcgesv.f index 8240e2b6..142a0e7c 100644 --- a/SRC/zcgesv.f +++ b/SRC/zcgesv.f @@ -142,7 +142,7 @@ *> *> \param[out] WORK *> \verbatim -*> WORK is COMPLEX*16 array, dimension (N*NRHS) +*> WORK is COMPLEX*16 array, dimension (N,NRHS) *> This array is used to hold the residual vectors. *> \endverbatim *> diff --git a/SRC/zcposv.f b/SRC/zcposv.f index 3159c3dd..c90a70ce 100644 --- a/SRC/zcposv.f +++ b/SRC/zcposv.f @@ -150,7 +150,7 @@ *> *> \param[out] WORK *> \verbatim -*> WORK is COMPLEX*16 array, dimension (N*NRHS) +*> WORK is COMPLEX*16 array, dimension (N,NRHS) *> This array is used to hold the residual vectors. *> \endverbatim *> |