Skip to content

Commit 58e8674

Browse files
committed
comments fixed: subroutine name
1 parent ae465cc commit 58e8674

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+184
-184
lines changed

SRC/cgbrfsx.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
*> \verbatim
139139
*> AFB is COMPLEX array, dimension (LDAFB,N)
140140
*> Details of the LU factorization of the band matrix A, as
141-
*> computed by DGBTRF. U is stored as an upper triangular band
141+
*> computed by CGBTRF. U is stored as an upper triangular band
142142
*> matrix with KL+KU superdiagonals in rows 1 to KL+KU+1, and
143143
*> the multipliers used during the factorization are stored in
144144
*> rows KL+KU+2 to 2*KL+KU+1.
@@ -153,7 +153,7 @@
153153
*> \param[in] IPIV
154154
*> \verbatim
155155
*> IPIV is INTEGER array, dimension (N)
156-
*> The pivot indices from SGETRF; for 1<=i<=N, row i of the
156+
*> The pivot indices from CGETRF; for 1<=i<=N, row i of the
157157
*> matrix was interchanged with row IPIV(i).
158158
*> \endverbatim
159159
*>
@@ -208,7 +208,7 @@
208208
*> \param[in,out] X
209209
*> \verbatim
210210
*> X is COMPLEX array, dimension (LDX,NRHS)
211-
*> On entry, the solution matrix X, as computed by SGETRS.
211+
*> On entry, the solution matrix X, as computed by CGETRS.
212212
*> On exit, the improved solution matrix X.
213213
*> \endverbatim
214214
*>

SRC/cgbsvxx.f

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
*> IPIV is INTEGER array, dimension (N)
231231
*> If FACT = 'F', then IPIV is an input argument and on entry
232232
*> contains the pivot indices from the factorization A = P*L*U
233-
*> as computed by SGETRF; row i of the matrix was interchanged
233+
*> as computed by CGETRF; row i of the matrix was interchanged
234234
*> with row IPIV(i).
235235
*>
236236
*> If FACT = 'N', then IPIV is an output argument and on exit
@@ -349,8 +349,8 @@
349349
*> This also means that the solution X, estimated condition numbers,
350350
*> and error bounds could be unreliable. If factorization fails with
351351
*> 0<INFO<=N, then this contains the reciprocal pivot growth factor
352-
*> for the leading INFO columns of A. In SGESVX, this quantity is
353-
*> returned in WORK(1).
352+
*> for the leading INFO columns of A. In CGESVX, this quantity is
353+
*> returned in RWORK(1).
354354
*> \endverbatim
355355
*>
356356
*> \param[out] BERR
@@ -638,7 +638,7 @@ SUBROUTINE CGBSVXX( FACT, TRANS, N, KL, KU, NRHS, AB, LDAB, AFB,
638638
*
639639
RPVGRW = ZERO
640640
*
641-
* Test the input parameters. PARAMS is not tested until SGERFSX.
641+
* Test the input parameters. PARAMS is not tested until CGERFSX.
642642
*
643643
IF( .NOT.NOFACT .AND. .NOT.EQUIL .AND. .NOT.
644644
$ LSAME( FACT, 'F' ) ) THEN

SRC/cgehrd.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@
159159
*> modified element of the upper Hessenberg matrix H, and vi denotes an
160160
*> element of the vector defining H(i).
161161
*>
162-
*> This file is a slight modification of LAPACK-3.0's DGEHRD
162+
*> This file is a slight modification of LAPACK-3.0's CGEHRD
163163
*> subroutine incorporating improvements proposed by Quintana-Orti and
164-
*> Van de Geijn (2006). (See DLAHR2.)
164+
*> Van de Geijn (2006). (See CLAHR2.)
165165
*> \endverbatim
166166
*>
167167
* =====================================================================

SRC/cgejsv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@
359359
*> RWORK(3) = SCONDA is an estimate for the condition number of
360360
*> column equilibrated A. (If JOBA = 'E' or 'G')
361361
*> SCONDA is an estimate of SQRT(||(R^* * R)^(-1)||_1).
362-
*> It is computed using SPOCON. It holds
362+
*> It is computed using CPOCON. It holds
363363
*> N^(-1/4) * SCONDA <= ||R^(-1)||_2 <= N^(1/4) * SCONDA
364364
*> where R is the triangular factor from the QRF of A.
365365
*> However, if R is truncated and the numerical rank is

SRC/cgemlqt.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
*> MB is INTEGER
8080
*> The block size used for the storage of T. K >= MB >= 1.
8181
*> This must be the same value of MB used to generate T
82-
*> in DGELQT.
82+
*> in CGELQT.
8383
*> \endverbatim
8484
*>
8585
*> \param[in] V
@@ -89,7 +89,7 @@
8989
*> (LDV,N) if SIDE = 'R'
9090
*> The i-th row must contain the vector which defines the
9191
*> elementary reflector H(i), for i = 1,2,...,k, as returned by
92-
*> DGELQT in the first K rows of its array argument A.
92+
*> CGELQT in the first K rows of its array argument A.
9393
*> \endverbatim
9494
*>
9595
*> \param[in] LDV
@@ -102,7 +102,7 @@
102102
*> \verbatim
103103
*> T is COMPLEX array, dimension (LDT,K)
104104
*> The upper triangular factors of the block reflectors
105-
*> as returned by DGELQT, stored as a MB-by-K matrix.
105+
*> as returned by CGELQT, stored as a MB-by-K matrix.
106106
*> \endverbatim
107107
*>
108108
*> \param[in] LDT

SRC/cggev.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@
197197
*> The QZ iteration failed. No eigenvectors have been
198198
*> calculated, but ALPHA(j) and BETA(j) should be
199199
*> correct for j=INFO+1,...,N.
200-
*> > N: =N+1: other then QZ iteration failed in SHGEQZ,
201-
*> =N+2: error return from STGEVC.
200+
*> > N: =N+1: other then QZ iteration failed in CHGEQZ,
201+
*> =N+2: error return from CTGEVC.
202202
*> \endverbatim
203203
*
204204
* Authors:

SRC/cggev3.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@
196196
*> The QZ iteration failed. No eigenvectors have been
197197
*> calculated, but ALPHA(j) and BETA(j) should be
198198
*> correct for j=INFO+1,...,N.
199-
*> > N: =N+1: other then QZ iteration failed in SHGEQZ,
200-
*> =N+2: error return from STGEVC.
199+
*> > N: =N+1: other then QZ iteration failed in CHGEQZ,
200+
*> =N+2: error return from CTGEVC.
201201
*> \endverbatim
202202
*
203203
* Authors:

SRC/cggevx.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,8 @@ SUBROUTINE CGGEVX( BALANC, JOBVL, JOBVR, SENSE, N, A, LDA, B, LDB,
710710
*
711711
IF( .NOT.WANTSN ) THEN
712712
*
713-
* compute eigenvectors (STGEVC) and estimate condition
714-
* numbers (STGSNA). Note that the definition of the condition
713+
* compute eigenvectors (CTGEVC) and estimate condition
714+
* numbers (CTGSNA). Note that the definition of the condition
715715
* number is not invariant under transformation (u,v) to
716716
* (Q*u, Z*v), where (u,v) are eigenvectors of the generalized
717717
* Schur form (S,T), Q and Z are orthogonal matrices. In order

SRC/cheevr.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
*> The desired accuracy of the output can be specified by the input
7676
*> parameter ABSTOL.
7777
*>
78-
*> For more details, see DSTEMR's documentation and:
78+
*> For more details, see CSTEMR's documentation and:
7979
*> - Inderjit S. Dhillon and Beresford N. Parlett: "Multiple representations
8080
*> to compute orthogonal eigenvectors of symmetric tridiagonal matrices,"
8181
*> Linear Algebra and its Applications, 387(1), pp. 1-28, August 2004.

SRC/cheevr_2stage.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
*> The desired accuracy of the output can be specified by the input
8282
*> parameter ABSTOL.
8383
*>
84-
*> For more details, see DSTEMR's documentation and:
84+
*> For more details, see CSTEMR's documentation and:
8585
*> - Inderjit S. Dhillon and Beresford N. Parlett: "Multiple representations
8686
*> to compute orthogonal eigenvectors of symmetric tridiagonal matrices,"
8787
*> Linear Algebra and its Applications, 387(1), pp. 1-28, August 2004.

0 commit comments

Comments
 (0)