diff options
author | Henning Thielemann <git@henning-thielemann.de> | 2017-06-07 11:23:23 +0200 |
---|---|---|
committer | Henning Thielemann <git@henning-thielemann.de> | 2017-06-07 11:23:23 +0200 |
commit | 86da0273d1a0421490537d4827acf31ec3419c9d (patch) | |
tree | 9b3fc0b7b536e2c6397cc0c1cc749c52d616419c | |
parent | 14c7883a6d856e5d4621fe8ec15b8bca88679725 (diff) | |
download | lapack-86da0273d1a0421490537d4827acf31ec3419c9d.tar.gz lapack-86da0273d1a0421490537d4827acf31ec3419c9d.tar.bz2 lapack-86da0273d1a0421490537d4827acf31ec3419c9d.zip |
xGELSD; comment for array A: turn to \param[in,out]
-rw-r--r-- | SRC/dgelsd.f | 2 | ||||
-rw-r--r-- | SRC/sgelsd.f | 2 | ||||
-rw-r--r-- | SRC/zgelsd.f | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/SRC/dgelsd.f b/SRC/dgelsd.f index d24b2559..c42cf1e5 100644 --- a/SRC/dgelsd.f +++ b/SRC/dgelsd.f @@ -89,7 +89,7 @@ *> of the matrices B and X. NRHS >= 0. *> \endverbatim *> -*> \param[in] A +*> \param[in,out] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the M-by-N matrix A. diff --git a/SRC/sgelsd.f b/SRC/sgelsd.f index 91656a9b..c32180ba 100644 --- a/SRC/sgelsd.f +++ b/SRC/sgelsd.f @@ -89,7 +89,7 @@ *> of the matrices B and X. NRHS >= 0. *> \endverbatim *> -*> \param[in] A +*> \param[in,out] A *> \verbatim *> A is REAL array, dimension (LDA,N) *> On entry, the M-by-N matrix A. diff --git a/SRC/zgelsd.f b/SRC/zgelsd.f index ce574173..d671f191 100644 --- a/SRC/zgelsd.f +++ b/SRC/zgelsd.f @@ -90,7 +90,7 @@ *> of the matrices B and X. NRHS >= 0. *> \endverbatim *> -*> \param[in] A +*> \param[in,out] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N matrix A. |