diff options
author | eugene.chereshnev <eugenechereshnev@gmail.com> | 2017-03-13 19:17:03 -0700 |
---|---|---|
committer | eugene.chereshnev <eugenechereshnev@gmail.com> | 2017-03-17 12:37:50 -0700 |
commit | c81566390c16e7b185bed274064b11170e5aadd3 (patch) | |
tree | bd97cae9138be62ef619e9677874e4e0e9f87a88 /SRC | |
parent | 06f63681c5c9ada2371e43c48d2fde6265a590e0 (diff) | |
download | lapack-c81566390c16e7b185bed274064b11170e5aadd3.tar.gz lapack-c81566390c16e7b185bed274064b11170e5aadd3.tar.bz2 lapack-c81566390c16e7b185bed274064b11170e5aadd3.zip |
*gemlqt.f, *lamswlq.f, *lamtsqr.f: fix mistakes in comments
Diffstat (limited to 'SRC')
-rw-r--r-- | SRC/cgemlqt.f | 6 | ||||
-rw-r--r-- | SRC/clamswlq.f | 10 | ||||
-rw-r--r-- | SRC/clamtsqr.f | 2 | ||||
-rw-r--r-- | SRC/claswlq.f | 2 | ||||
-rw-r--r-- | SRC/dgemlqt.f | 8 | ||||
-rw-r--r-- | SRC/dlamswlq.f | 8 | ||||
-rw-r--r-- | SRC/dlamtsqr.f | 2 | ||||
-rw-r--r-- | SRC/dlaswlq.f | 2 | ||||
-rw-r--r-- | SRC/sgemlqt.f | 6 | ||||
-rw-r--r-- | SRC/slamswlq.f | 14 | ||||
-rw-r--r-- | SRC/slamtsqr.f | 2 | ||||
-rw-r--r-- | SRC/slaswlq.f | 2 | ||||
-rw-r--r-- | SRC/zgemlqt.f | 8 | ||||
-rw-r--r-- | SRC/zlamswlq.f | 10 | ||||
-rw-r--r-- | SRC/zlamtsqr.f | 2 | ||||
-rw-r--r-- | SRC/zlaswlq.f | 2 |
16 files changed, 47 insertions, 39 deletions
diff --git a/SRC/cgemlqt.f b/SRC/cgemlqt.f index e4c991a7..3f465d71 100644 --- a/SRC/cgemlqt.f +++ b/SRC/cgemlqt.f @@ -18,7 +18,7 @@ *> *> \verbatim *> -*> CGEMQRT overwrites the general real M-by-N matrix C with +*> CGEMLQT overwrites the general real M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q C C Q @@ -92,8 +92,8 @@ *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. -*> If SIDE = 'L', LDA >= max(1,M); -*> if SIDE = 'R', LDA >= max(1,N). +*> If SIDE = 'L', LDV >= max(1,M); +*> if SIDE = 'R', LDV >= max(1,N). *> \endverbatim *> *> \param[in] T diff --git a/SRC/clamswlq.f b/SRC/clamswlq.f index fd19f0af..8286ac35 100644 --- a/SRC/clamswlq.f +++ b/SRC/clamswlq.f @@ -49,7 +49,7 @@ *> \param[in] M *> \verbatim *> M is INTEGER -*> The number of rows of the matrix A. M >=0. +*> The number of rows of the matrix C. M >=0. *> \endverbatim *> *> \param[in] N @@ -88,12 +88,14 @@ *> *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim -*> A is COMPLEX array, dimension (LDA,K) +*> A is COMPLEX array, dimension +*> (LDA,M) if SIDE = 'L', +*> (LDA,N) if SIDE = 'R' *> The i-th row must contain the vector which defines the blocked *> elementary reflector H(i), for i = 1,2,...,k, as returned by -*> DLASWLQ in the first k rows of its array argument A. +*> CLASWLQ in the first k rows of its array argument A. *> \endverbatim *> *> \param[in] LDA diff --git a/SRC/clamtsqr.f b/SRC/clamtsqr.f index a787caab..da05c57c 100644 --- a/SRC/clamtsqr.f +++ b/SRC/clamtsqr.f @@ -81,7 +81,7 @@ *> N >= NB >= 1. *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim *> A is COMPLEX array, dimension (LDA,K) *> The i-th column must contain the vector which defines the diff --git a/SRC/claswlq.f b/SRC/claswlq.f index 8b77142d..4c23d3ba 100644 --- a/SRC/claswlq.f +++ b/SRC/claswlq.f @@ -55,7 +55,7 @@ *> \verbatim *> A is COMPLEX array, dimension (LDA,N) *> On entry, the M-by-N matrix A. -*> On exit, the elements on and bleow the diagonal +*> On exit, the elements on and below the diagonal *> of the array contain the N-by-N lower triangular matrix L; *> the elements above the diagonal represent Q by the rows *> of blocked V (see Further Details). diff --git a/SRC/dgemlqt.f b/SRC/dgemlqt.f index 41a517a2..92aab9be 100644 --- a/SRC/dgemlqt.f +++ b/SRC/dgemlqt.f @@ -6,7 +6,7 @@ * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly -*> Download DGEMQRT + dependencies +*> Download DGEMLQT + dependencies *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dgemlqt.f"> *> [TGZ]</a> *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dgemlqt.f"> @@ -35,7 +35,7 @@ *> *> \verbatim *> -*> DGEMQRT overwrites the general real M-by-N matrix C with +*> DGEMLQT overwrites the general real M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q C C Q @@ -109,8 +109,8 @@ *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. -*> If SIDE = 'L', LDA >= max(1,M); -*> if SIDE = 'R', LDA >= max(1,N). +*> If SIDE = 'L', LDV >= max(1,M); +*> if SIDE = 'R', LDV >= max(1,N). *> \endverbatim *> *> \param[in] T diff --git a/SRC/dlamswlq.f b/SRC/dlamswlq.f index 8dc6df8a..8430ca19 100644 --- a/SRC/dlamswlq.f +++ b/SRC/dlamswlq.f @@ -49,7 +49,7 @@ *> \param[in] M *> \verbatim *> M is INTEGER -*> The number of rows of the matrix A. M >=0. +*> The number of rows of the matrix C. M >=0. *> \endverbatim *> *> \param[in] N @@ -88,9 +88,11 @@ *> *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim -*> A is DOUBLE PRECISION array, dimension (LDA,K) +*> A is DOUBLE PRECISION array, dimension +*> (LDA,M) if SIDE = 'L', +*> (LDA,N) if SIDE = 'R' *> The i-th row must contain the vector which defines the blocked *> elementary reflector H(i), for i = 1,2,...,k, as returned by *> DLASWLQ in the first k rows of its array argument A. diff --git a/SRC/dlamtsqr.f b/SRC/dlamtsqr.f index 9ba45901..d4801645 100644 --- a/SRC/dlamtsqr.f +++ b/SRC/dlamtsqr.f @@ -81,7 +81,7 @@ *> N >= NB >= 1. *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,K) *> The i-th column must contain the vector which defines the diff --git a/SRC/dlaswlq.f b/SRC/dlaswlq.f index 2830711a..41f99992 100644 --- a/SRC/dlaswlq.f +++ b/SRC/dlaswlq.f @@ -55,7 +55,7 @@ *> \verbatim *> A is DOUBLE PRECISION array, dimension (LDA,N) *> On entry, the M-by-N matrix A. -*> On exit, the elements on and bleow the diagonal +*> On exit, the elements on and below the diagonal *> of the array contain the N-by-N lower triangular matrix L; *> the elements above the diagonal represent Q by the rows *> of blocked V (see Further Details). diff --git a/SRC/sgemlqt.f b/SRC/sgemlqt.f index 47074342..d8f2f437 100644 --- a/SRC/sgemlqt.f +++ b/SRC/sgemlqt.f @@ -18,7 +18,7 @@ *> *> \verbatim *> -*> DGEMQRT overwrites the general real M-by-N matrix C with +*> DGEMLQT overwrites the general real M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q C C Q @@ -92,8 +92,8 @@ *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. -*> If SIDE = 'L', LDA >= max(1,M); -*> if SIDE = 'R', LDA >= max(1,N). +*> If SIDE = 'L', LDV >= max(1,M); +*> if SIDE = 'R', LDV >= max(1,N). *> \endverbatim *> *> \param[in] T diff --git a/SRC/slamswlq.f b/SRC/slamswlq.f index ccdddbb3..f3238b6d 100644 --- a/SRC/slamswlq.f +++ b/SRC/slamswlq.f @@ -18,7 +18,7 @@ *> *> \verbatim *> -*> DLAMQRTS overwrites the general real M-by-N matrix C with +*> SLAMSWLQ overwrites the general real M-by-N matrix C with *> *> *> SIDE = 'L' SIDE = 'R' @@ -26,7 +26,7 @@ *> TRANS = 'T': Q**T * C C * Q**T *> where Q is a real orthogonal matrix defined as the product of blocked *> elementary reflectors computed by short wide LQ -*> factorization (DLASWLQ) +*> factorization (SLASWLQ) *> \endverbatim * * Arguments: @@ -49,7 +49,7 @@ *> \param[in] M *> \verbatim *> M is INTEGER -*> The number of rows of the matrix A. M >=0. +*> The number of rows of the matrix C. M >=0. *> \endverbatim *> *> \param[in] N @@ -88,12 +88,14 @@ *> *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim -*> A is REAL array, dimension (LDA,K) +*> A is REAL array, dimension +*> (LDA,M) if SIDE = 'L', +*> (LDA,N) if SIDE = 'R' *> The i-th row must contain the vector which defines the blocked *> elementary reflector H(i), for i = 1,2,...,k, as returned by -*> DLASWLQ in the first k rows of its array argument A. +*> SLASWLQ in the first k rows of its array argument A. *> \endverbatim *> *> \param[in] LDA diff --git a/SRC/slamtsqr.f b/SRC/slamtsqr.f index 747481da..cbcace69 100644 --- a/SRC/slamtsqr.f +++ b/SRC/slamtsqr.f @@ -81,7 +81,7 @@ *> N >= NB >= 1. *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim *> A is REAL array, dimension (LDA,K) *> The i-th column must contain the vector which defines the diff --git a/SRC/slaswlq.f b/SRC/slaswlq.f index efd28a6b..565ce2b6 100644 --- a/SRC/slaswlq.f +++ b/SRC/slaswlq.f @@ -55,7 +55,7 @@ *> \verbatim *> A is REAL array, dimension (LDA,N) *> On entry, the M-by-N matrix A. -*> On exit, the elements on and bleow the diagonal +*> On exit, the elements on and below the diagonal *> of the array contain the N-by-N lower triangular matrix L; *> the elements above the diagonal represent Q by the rows *> of blocked V (see Further Details). diff --git a/SRC/zgemlqt.f b/SRC/zgemlqt.f index 569713c7..3d9cf221 100644 --- a/SRC/zgemlqt.f +++ b/SRC/zgemlqt.f @@ -6,7 +6,7 @@ * http://www.netlib.org/lapack/explore-html/ * *> \htmlonly -*> Download DGEMQRT + dependencies +*> Download DGEMLQT + dependencies *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zgemlqt.f"> *> [TGZ]</a> *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zgemlqt.f"> @@ -35,7 +35,7 @@ *> *> \verbatim *> -*> ZGEMQRT overwrites the general real M-by-N matrix C with +*> ZGEMLQT overwrites the general real M-by-N matrix C with *> *> SIDE = 'L' SIDE = 'R' *> TRANS = 'N': Q C C Q @@ -109,8 +109,8 @@ *> \verbatim *> LDV is INTEGER *> The leading dimension of the array V. -*> If SIDE = 'L', LDA >= max(1,M); -*> if SIDE = 'R', LDA >= max(1,N). +*> If SIDE = 'L', LDV >= max(1,M); +*> if SIDE = 'R', LDV >= max(1,N). *> \endverbatim *> *> \param[in] T diff --git a/SRC/zlamswlq.f b/SRC/zlamswlq.f index 8068114b..ac6c84c3 100644 --- a/SRC/zlamswlq.f +++ b/SRC/zlamswlq.f @@ -49,7 +49,7 @@ *> \param[in] M *> \verbatim *> M is INTEGER -*> The number of rows of the matrix A. M >=0. +*> The number of rows of the matrix C. M >=0. *> \endverbatim *> *> \param[in] N @@ -88,12 +88,14 @@ *> *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim -*> A is COMPLEX*16 array, dimension (LDA,K) +*> A is COMPLEX*16 array, dimension +*> (LDA,M) if SIDE = 'L', +*> (LDA,N) if SIDE = 'R' *> The i-th row must contain the vector which defines the blocked *> elementary reflector H(i), for i = 1,2,...,k, as returned by -*> DLASWLQ in the first k rows of its array argument A. +*> ZLASWLQ in the first k rows of its array argument A. *> \endverbatim *> *> \param[in] LDA diff --git a/SRC/zlamtsqr.f b/SRC/zlamtsqr.f index 855083a6..4e2ba50d 100644 --- a/SRC/zlamtsqr.f +++ b/SRC/zlamtsqr.f @@ -81,7 +81,7 @@ *> N >= NB >= 1. *> \endverbatim *> -*> \param[in,out] A +*> \param[in] A *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,K) *> The i-th column must contain the vector which defines the diff --git a/SRC/zlaswlq.f b/SRC/zlaswlq.f index cd7bcc3a..96f86f18 100644 --- a/SRC/zlaswlq.f +++ b/SRC/zlaswlq.f @@ -55,7 +55,7 @@ *> \verbatim *> A is COMPLEX*16 array, dimension (LDA,N) *> On entry, the M-by-N matrix A. -*> On exit, the elements on and bleow the diagonal +*> On exit, the elements on and below the diagonal *> of the array contain the N-by-N lower triangular matrix L; *> the elements above the diagonal represent Q by the rows *> of blocked V (see Further Details). |