summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlangou <julien.langou@ucdenver.edu>2016-10-17 21:00:46 +0200
committerGitHub <noreply@github.com>2016-10-17 21:00:46 +0200
commit44f54c02c6242ece672619df26752d27ab5a07c0 (patch)
treed7cfce830891d61a914a7562b7481bbad2187034
parentf1753a0de871a87552cfa84f1b0c1ad4c9ce18d6 (diff)
parenta127efaefdfa274f7686b95b242898184f504d96 (diff)
downloadlapack-44f54c02c6242ece672619df26752d27ab5a07c0.tar.gz
lapack-44f54c02c6242ece672619df26752d27ab5a07c0.tar.bz2
lapack-44f54c02c6242ece672619df26752d27ab5a07c0.zip
Merge pull request #72 from mgates3/larcm
Add [out] in docs
-rw-r--r--SRC/clacrm.f8
-rw-r--r--SRC/clarcm.f8
-rw-r--r--SRC/dlasd0.f2
-rw-r--r--SRC/slasd0.f2
-rw-r--r--SRC/zlacrm.f8
-rw-r--r--SRC/zlarcm.f8
6 files changed, 18 insertions, 18 deletions
diff --git a/SRC/clacrm.f b/SRC/clacrm.f
index cd1aac28..4d262400 100644
--- a/SRC/clacrm.f
+++ b/SRC/clacrm.f
@@ -61,7 +61,7 @@
*> \param[in] A
*> \verbatim
*> A is COMPLEX array, dimension (LDA, N)
-*> A contains the M by N matrix A.
+*> On entry, A contains the M by N matrix A.
*> \endverbatim
*>
*> \param[in] LDA
@@ -73,7 +73,7 @@
*> \param[in] B
*> \verbatim
*> B is REAL array, dimension (LDB, N)
-*> B contains the N by N matrix B.
+*> On entry, B contains the N by N matrix B.
*> \endverbatim
*>
*> \param[in] LDB
@@ -82,10 +82,10 @@
*> The leading dimension of the array B. LDB >=max(1,N).
*> \endverbatim
*>
-*> \param[in] C
+*> \param[out] C
*> \verbatim
*> C is COMPLEX array, dimension (LDC, N)
-*> C contains the M by N matrix C.
+*> On exit, C contains the M by N matrix C.
*> \endverbatim
*>
*> \param[in] LDC
diff --git a/SRC/clarcm.f b/SRC/clarcm.f
index 5ad15a83..1336ffd3 100644
--- a/SRC/clarcm.f
+++ b/SRC/clarcm.f
@@ -61,7 +61,7 @@
*> \param[in] A
*> \verbatim
*> A is REAL array, dimension (LDA, M)
-*> A contains the M by M matrix A.
+*> On entry, A contains the M by M matrix A.
*> \endverbatim
*>
*> \param[in] LDA
@@ -73,7 +73,7 @@
*> \param[in] B
*> \verbatim
*> B is COMPLEX array, dimension (LDB, N)
-*> B contains the M by N matrix B.
+*> On entry, B contains the M by N matrix B.
*> \endverbatim
*>
*> \param[in] LDB
@@ -82,10 +82,10 @@
*> The leading dimension of the array B. LDB >=max(1,M).
*> \endverbatim
*>
-*> \param[in] C
+*> \param[out] C
*> \verbatim
*> C is COMPLEX array, dimension (LDC, N)
-*> C contains the M by N matrix C.
+*> On exit, C contains the M by N matrix C.
*> \endverbatim
*>
*> \param[in] LDC
diff --git a/SRC/dlasd0.f b/SRC/dlasd0.f
index 42e95ed0..9b7355c9 100644
--- a/SRC/dlasd0.f
+++ b/SRC/dlasd0.f
@@ -72,7 +72,7 @@
*> On exit D, if INFO = 0, contains its singular values.
*> \endverbatim
*>
-*> \param[in] E
+*> \param[in,out] E
*> \verbatim
*> E is DOUBLE PRECISION array, dimension (M-1)
*> Contains the subdiagonal entries of the bidiagonal matrix.
diff --git a/SRC/slasd0.f b/SRC/slasd0.f
index 45c7f50a..47d5f75b 100644
--- a/SRC/slasd0.f
+++ b/SRC/slasd0.f
@@ -72,7 +72,7 @@
*> On exit D, if INFO = 0, contains its singular values.
*> \endverbatim
*>
-*> \param[in] E
+*> \param[in,out] E
*> \verbatim
*> E is REAL array, dimension (M-1)
*> Contains the subdiagonal entries of the bidiagonal matrix.
diff --git a/SRC/zlacrm.f b/SRC/zlacrm.f
index d09bdf39..65bcc61d 100644
--- a/SRC/zlacrm.f
+++ b/SRC/zlacrm.f
@@ -61,7 +61,7 @@
*> \param[in] A
*> \verbatim
*> A is COMPLEX*16 array, dimension (LDA, N)
-*> A contains the M by N matrix A.
+*> On entry, A contains the M by N matrix A.
*> \endverbatim
*>
*> \param[in] LDA
@@ -73,7 +73,7 @@
*> \param[in] B
*> \verbatim
*> B is DOUBLE PRECISION array, dimension (LDB, N)
-*> B contains the N by N matrix B.
+*> On entry, B contains the N by N matrix B.
*> \endverbatim
*>
*> \param[in] LDB
@@ -82,10 +82,10 @@
*> The leading dimension of the array B. LDB >=max(1,N).
*> \endverbatim
*>
-*> \param[in] C
+*> \param[out] C
*> \verbatim
*> C is COMPLEX*16 array, dimension (LDC, N)
-*> C contains the M by N matrix C.
+*> On exit, C contains the M by N matrix C.
*> \endverbatim
*>
*> \param[in] LDC
diff --git a/SRC/zlarcm.f b/SRC/zlarcm.f
index 28688736..35a21169 100644
--- a/SRC/zlarcm.f
+++ b/SRC/zlarcm.f
@@ -61,7 +61,7 @@
*> \param[in] A
*> \verbatim
*> A is DOUBLE PRECISION array, dimension (LDA, M)
-*> A contains the M by M matrix A.
+*> On entry, A contains the M by M matrix A.
*> \endverbatim
*>
*> \param[in] LDA
@@ -73,7 +73,7 @@
*> \param[in] B
*> \verbatim
*> B is COMPLEX*16 array, dimension (LDB, N)
-*> B contains the M by N matrix B.
+*> On entry, B contains the M by N matrix B.
*> \endverbatim
*>
*> \param[in] LDB
@@ -82,10 +82,10 @@
*> The leading dimension of the array B. LDB >=max(1,M).
*> \endverbatim
*>
-*> \param[in] C
+*> \param[out] C
*> \verbatim
*> C is COMPLEX*16 array, dimension (LDC, N)
-*> C contains the M by N matrix C.
+*> On exit, C contains the M by N matrix C.
*> \endverbatim
*>
*> \param[in] LDC