aboutsummaryrefslogtreecommitdiff
path: root/SRC/sgesvx.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2012-01-08 05:27:18 +0000
committerjulie <julielangou@users.noreply.github.com>2012-01-08 05:27:18 +0000
commit491fcee0303e374ba6df7b44247747624b956131 (patch)
treed7fb66ee3ec8d632c00918f8fea282a587aef9a7 /SRC/sgesvx.f
parenta055c28aa29a338fef15d9d4550b03bcbbfda298 (diff)
Fix minor problem in some comments...
Diffstat (limited to 'SRC/sgesvx.f')
-rw-r--r--SRC/sgesvx.f10
1 files changed, 5 insertions, 5 deletions
diff --git a/SRC/sgesvx.f b/SRC/sgesvx.f
index 3e2f1b12..6def2508 100644
--- a/SRC/sgesvx.f
+++ b/SRC/sgesvx.f
@@ -154,7 +154,7 @@
*>
*> \param[in,out] AF
*> \verbatim
-*> AF is or output) REAL array, dimension (LDAF,N)
+*> AF is REAL array, dimension (LDAF,N)
*> If FACT = 'F', then AF is an input argument and on entry
*> contains the factors L and U from the factorization
*> A = P*L*U as computed by SGETRF. If EQUED .ne. 'N', then
@@ -178,7 +178,7 @@
*>
*> \param[in,out] IPIV
*> \verbatim
-*> IPIV is or output) INTEGER array, dimension (N)
+*> IPIV is INTEGER array, dimension (N)
*> If FACT = 'F', then IPIV is an input argument and on entry
*> contains the pivot indices from the factorization A = P*L*U
*> as computed by SGETRF; row i of the matrix was interchanged
@@ -195,7 +195,7 @@
*>
*> \param[in,out] EQUED
*> \verbatim
-*> EQUED is or output) CHARACTER*1
+*> EQUED is CHARACTER*1
*> Specifies the form of equilibration that was done.
*> = 'N': No equilibration (always true if FACT = 'N').
*> = 'R': Row equilibration, i.e., A has been premultiplied by
@@ -210,7 +210,7 @@
*>
*> \param[in,out] R
*> \verbatim
-*> R is or output) REAL array, dimension (N)
+*> R is REAL array, dimension (N)
*> The row scale factors for A. If EQUED = 'R' or 'B', A is
*> multiplied on the left by diag(R); if EQUED = 'N' or 'C', R
*> is not accessed. R is an input argument if FACT = 'F';
@@ -220,7 +220,7 @@
*>
*> \param[in,out] C
*> \verbatim
-*> C is or output) REAL array, dimension (N)
+*> C is REAL array, dimension (N)
*> The column scale factors for A. If EQUED = 'C' or 'B', A is
*> multiplied on the right by diag(C); if EQUED = 'N' or 'R', C
*> is not accessed. C is an input argument if FACT = 'F';