Skip to content

Commit b36b9b7

Browse files
authored
Fix documentation for ABSTOL and factor flags
changed the description of DGECX
1 parent df8c739 commit b36b9b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

SRC/dgecx.f

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
*>
7575
*> 2) The input parameter ABSTOL, the absolute tolerance for
7676
*> the maximum column 2-norm of the submatrix residual
77-
*> A_sub_resid = A(K+1:M_sub, K+1:N_sub).
77+
*> A_sub_resid(K) = A(K+1:M_sub, K+1:N_sub).
7878
*> This means that the factorization stops if this norm is less
7979
*> or equal to ABSTOL. If ABSTOL < 0.0, the criterion is not used.
8080
*>
@@ -122,11 +122,11 @@
122122
*> ==================================
123123
*>
124124
*> When the columns are selected for the factor C, and:
125-
*> a) If the flag RET_C is set, then the routine explicitly returns
125+
*> a) If the flag FACT='C' or 'X', then the routine explicitly returns
126126
*> the matrix C, otherwise the routine returns only the indices of
127127
*> the selected columns from the original matrix A stored in the JPIV
128128
*> array as the first K elements.
129-
*> b) If the flag COMP_X is set, then the routine also explicitly
129+
*> b) If the flag FACT='X', then the routine also explicitly
130130
*> computes and returns the factor X = pseudoinv(C) * A.
131131
*>
132132
*> \endverbatim
@@ -1170,4 +1170,4 @@ SUBROUTINE DGECX( FACT, USESD, M, N,
11701170
*
11711171
* DGECX
11721172
*
1173-
END
1173+
END

0 commit comments

Comments
 (0)