aboutsummaryrefslogtreecommitdiff
path: root/SRC/zgeqr2p.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-10-31 22:21:11 +0000
committerjulie <julielangou@users.noreply.github.com>2011-10-31 22:21:11 +0000
commit0d9e213c670ab0e68f17d68251412d53250108e1 (patch)
tree2bcab1c08b84e327b9be345385e2c31e8a26905a /SRC/zgeqr2p.f
parent82901cd3e7bb75c73fc3a17fe7bf922289337f97 (diff)
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 'SRC/zgeqr2p.f')
-rw-r--r--SRC/zgeqr2p.f51
1 files changed, 36 insertions, 15 deletions
diff --git a/SRC/zgeqr2p.f b/SRC/zgeqr2p.f
index 7721c112..d2599777 100644
--- a/SRC/zgeqr2p.f
+++ b/SRC/zgeqr2p.f
@@ -51,6 +51,42 @@
*> The number of columns of the matrix A. N >= 0.
*> \endverbatim
*>
+*> \param[in,out] A
+*> \verbatim
+*> A is COMPLEX*16 array, dimension (LDA,N)
+*> On entry, the m by n matrix A.
+*> On exit, the elements on and above the diagonal of the array
+*> contain the min(m,n) by n upper trapezoidal matrix R (R is
+*> upper triangular if m >= n); the elements below the diagonal,
+*> with the array TAU, represent the unitary matrix Q as a
+*> product of elementary reflectors (see Further Details).
+*> \endverbatim
+*>
+*> \param[in] LDA
+*> \verbatim
+*> LDA is INTEGER
+*> The leading dimension of the array A. LDA >= max(1,M).
+*> \endverbatim
+*>
+*> \param[out] TAU
+*> \verbatim
+*> TAU is COMPLEX*16 array, dimension (min(M,N))
+*> The scalar factors of the elementary reflectors (see Further
+*> Details).
+*> \endverbatim
+*>
+*> \param[out] WORK
+*> \verbatim
+*> WORK is COMPLEX*16 array, dimension (N)
+*> \endverbatim
+*>
+*> \param[out] INFO
+*> \verbatim
+*> INFO is INTEGER
+*> = 0: successful exit
+*> < 0: if INFO = -i, the i-th argument had an illegal value
+*> \endverbatim
+*>
*
* Authors
* =======
@@ -69,21 +105,6 @@
* ===============
*>\details \b Further \b Details
*> \verbatim
-* product of elementary reflectors (see Further Details).
-*>
-*> LDA (input) INTEGER
-*> The leading dimension of the array A. LDA >= max(1,M).
-*>
-*> TAU (output) COMPLEX*16 array, dimension (min(M,N))
-*> The scalar factors of the elementary reflectors (see Further
-*> Details).
-*>
-*> WORK (workspace) COMPLEX*16 array, dimension (N)
-*>
-*> INFO (output) INTEGER
-*> = 0: successful exit
-*> < 0: if INFO = -i, the i-th argument had an illegal value
-*>
*>
*> The matrix Q is represented as a product of elementary reflectors
*>