Skip to content

Commit 036fef4

Browse files
committed
fixed description in SRC/zlaqp2rk.f SRC/zlaqp3rk.f
1 parent 0a67441 commit 036fef4

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

SRC/zlaqp2rk.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
*>
254254
*> \param[out] WORK
255255
*> \verbatim
256-
*> WORK is DOUBLE PRECISION array, dimension (N-1)
256+
*> WORK is COMPLEX*16 array, dimension (N-1)
257257
*> Used in ZLARF subroutine to apply an elementary
258258
*> reflector from the left.
259259
*> \endverbatim

SRC/zlaqp3rk.f

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@
2828
* $ NB, NRHS
2929
* DOUBLE PRECISION ABSTOL, MAXC2NRM, MAXC2NRMK, RELMAXC2NRMK,
3030
* $ RELTOL
31-
*
32-
* .. Scalar Arguments ..
33-
* LOGICAL DONE
34-
* INTEGER KB, LDA, LDF, M, N, NB, NRHS, IOFFSET
35-
* DOUBLE PRECISION ABSTOL, MAXC2NRM, MAXC2NRMK, RELMAXC2NRMK,
36-
* $ RELTOL
3731
* ..
3832
* .. Array Arguments ..
3933
* INTEGER IWORK( * ), JPIV( * )
@@ -192,7 +186,7 @@
192186
*>
193187
*> \param[in,out] A
194188
*> \verbatim
195-
*> A is DOUBLE PRECISION array, dimension (LDA,N+NRHS)
189+
*> A is COMPLEX*16 array, dimension (LDA,N+NRHS)
196190
*> On entry:
197191
*> the M-by-N matrix A and M-by-NRHS matrix B, as in
198192
*>
@@ -273,7 +267,7 @@
273267
*>
274268
*> \param[out] TAU
275269
*> \verbatim
276-
*> TAU is DOUBLE PRECISION array, dimension (min(M-IOFFSET,N))
270+
*> TAU is COMPLEX*16 array, dimension (min(M-IOFFSET,N))
277271
*> The scalar factors of the elementary reflectors.
278272
*> \endverbatim
279273
*>
@@ -291,13 +285,13 @@
291285
*>
292286
*> \param[out] AUXV
293287
*> \verbatim
294-
*> AUXV is DOUBLE PRECISION array, dimension (NB)
288+
*> AUXV is COMPLEX*16 array, dimension (NB)
295289
*> Auxiliary vector.
296290
*> \endverbatim
297291
*>
298292
*> \param[out] F
299293
*> \verbatim
300-
*> F is DOUBLE PRECISION array, dimension (LDF,NB)
294+
*> F is COMPLEX*16 array, dimension (LDF,NB)
301295
*> Matrix F**H = L*(Y**H)*A.
302296
*> \endverbatim
303297
*>

0 commit comments

Comments
 (0)