Skip to content

Commit 7b73666

Browse files
authored
Fix confusing use of "minor" in inline documentation (Reference-LAPACK PR849)
1 parent a20f533 commit 7b73666

26 files changed

+61
-61
lines changed

lapack-netlib/SRC/chegv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
*> i off-diagonal elements of an intermediate
161161
*> tridiagonal form did not converge to zero;
162162
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
163-
*> minor of order i of B is not positive definite.
163+
*> principal minor of order i of B is not positive.
164164
*> The factorization of B could not be completed and
165165
*> no eigenvalues or eigenvectors were computed.
166166
*> \endverbatim

lapack-netlib/SRC/chegv_2stage.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
*> i off-diagonal elements of an intermediate
180180
*> tridiagonal form did not converge to zero;
181181
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
182-
*> minor of order i of B is not positive definite.
182+
*> principal minor of order i of B is not positive.
183183
*> The factorization of B could not be completed and
184184
*> no eigenvalues or eigenvectors were computed.
185185
*> \endverbatim

lapack-netlib/SRC/chegvd.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
*> the submatrix lying in rows and columns INFO/(N+1)
213213
*> through mod(INFO,N+1);
214214
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
215-
*> minor of order i of B is not positive definite.
215+
*> principal minor of order i of B is not positive.
216216
*> The factorization of B could not be completed and
217217
*> no eigenvalues or eigenvectors were computed.
218218
*> \endverbatim

lapack-netlib/SRC/chegvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@
280280
*> i eigenvectors failed to converge. Their indices
281281
*> are stored in array IFAIL.
282282
*> > N: if INFO = N + i, for 1 <= i <= N, then the leading
283-
*> minor of order i of B is not positive definite.
283+
*> principal minor of order i of B is not positive.
284284
*> The factorization of B could not be completed and
285285
*> no eigenvalues or eigenvectors were computed.
286286
*> \endverbatim

lapack-netlib/SRC/chpgv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
*> i off-diagonal elements of an intermediate
145145
*> tridiagonal form did not convergeto zero;
146146
*> > N: if INFO = N + i, for 1 <= i <= n, then the leading
147-
*> minor of order i of B is not positive definite.
147+
*> principal minor of order i of B is not positive.
148148
*> The factorization of B could not be completed and
149149
*> no eigenvalues or eigenvectors were computed.
150150
*> \endverbatim

lapack-netlib/SRC/chpgvd.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
*> i off-diagonal elements of an intermediate
206206
*> tridiagonal form did not convergeto zero;
207207
*> > N: if INFO = N + i, for 1 <= i <= n, then the leading
208-
*> minor of order i of B is not positive definite.
208+
*> principal minor of order i of B is not positive.
209209
*> The factorization of B could not be completed and
210210
*> no eigenvalues or eigenvectors were computed.
211211
*> \endverbatim

lapack-netlib/SRC/chpgvx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
*> i eigenvectors failed to converge. Their indices
251251
*> are stored in array IFAIL.
252252
*> > N: if INFO = N + i, for 1 <= i <= n, then the leading
253-
*> minor of order i of B is not positive definite.
253+
*> principal minor of order i of B is not positive.
254254
*> The factorization of B could not be completed and
255255
*> no eigenvalues or eigenvectors were computed.
256256
*> \endverbatim

lapack-netlib/SRC/cla_porpvgrw.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ REAL FUNCTION CLA_PORPVGRW( UPLO, NCOLS, A, LDA, AF, LDAF, WORK )
140140
* .. Executable Statements ..
141141
UPPER = LSAME( 'Upper', UPLO )
142142
*
143-
* SPOTRF will have factored only the NCOLSxNCOLS leading minor, so
144-
* we restrict the growth search to that minor and use only the first
145-
* 2*NCOLS workspace entries.
143+
* SPOTRF will have factored only the NCOLSxNCOLS leading submatrix,
144+
* so we restrict the growth search to that submatrix and use only
145+
* the first 2*NCOLS workspace entries.
146146
*
147147
RPVGRW = 1.0
148148
DO I = 1, 2*NCOLS

lapack-netlib/SRC/cpbsv.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@
119119
*> INFO is INTEGER
120120
*> = 0: successful exit
121121
*> < 0: if INFO = -i, the i-th argument had an illegal value
122-
*> > 0: if INFO = i, the leading minor of order i of A is not
123-
*> positive definite, so the factorization could not be
124-
*> completed, and the solution has not been computed.
122+
*> > 0: if INFO = i, the leading principal minor of order i
123+
*> of A is not positive, so the factorization could not
124+
*> be completed, and the solution has not been computed.
125125
*> \endverbatim
126126
*
127127
* Authors:

lapack-netlib/SRC/cpbsvx.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
*> where U is an upper triangular band matrix, and L is a lower
7171
*> triangular band matrix.
7272
*>
73-
*> 3. If the leading i-by-i principal minor is not positive definite,
73+
*> 3. If the leading principal minor of order i is not positive,
7474
*> then the routine returns with INFO = i. Otherwise, the factored
7575
*> form of A is used to estimate the condition number of the matrix
7676
*> A. If the reciprocal of the condition number is less than machine
@@ -280,10 +280,10 @@
280280
*> = 0: successful exit
281281
*> < 0: if INFO = -i, the i-th argument had an illegal value
282282
*> > 0: if INFO = i, and i is
283-
*> <= N: the leading minor of order i of A is
284-
*> not positive definite, so the factorization
285-
*> could not be completed, and the solution has not
286-
*> been computed. RCOND = 0 is returned.
283+
*> <= N: the leading principal minor of order i of A
284+
*> is not positive, so the factorization could not
285+
*> be completed, and the solution has not been
286+
*> computed. RCOND = 0 is returned.
287287
*> = N+1: U is nonsingular, but RCOND is less than machine
288288
*> precision, meaning that the matrix is singular
289289
*> to working precision. Nevertheless, the

0 commit comments

Comments
 (0)