Doc: improve xPOEQUB description
authorChristoph Conrads <gitlab@christoph-conrads.name>
Wed, 21 Sep 2016 14:57:56 +0000 (16:57 +0200)
committerChristoph Conrads <gitlab@christoph-conrads.name>
Thu, 29 Sep 2016 15:01:43 +0000 (17:01 +0200)
- highlight difference to xPOEQU
- replace "symmetric" with "Hermitian" for {c,z}POEQUB

SRC/cpoequb.f
SRC/dpoequb.f
SRC/spoequb.f
SRC/zpoequb.f

index e0f4742..53320ee 100644 (file)
 *> \verbatim
 *>
 *> CPOEQUB computes row and column scalings intended to equilibrate a
-*> symmetric positive definite matrix A and reduce its condition number
+*> Hermitian positive definite matrix A and reduce its condition number
 *> (with respect to the two-norm).  S contains the scale factors,
 *> S(i) = 1/sqrt(A(i,i)), chosen so that the scaled matrix B with
 *> elements B(i,j) = S(i)*A(i,j)*S(j) has ones on the diagonal.  This
 *> choice of S puts the condition number of B within a factor N of the
 *> smallest possible condition number over all possible diagonal
 *> scalings.
+*>
+*> This routine differs from CPOEQU by restricting the scaling factors
+*> to a power of the radix.  Barring over- and underflow, scaling by
+*> these factors introduces no additional rounding errors.  However, the
+*> scaled diagonal entries are no longer approximately 1 but lie
+*> between sqrt(radix) and 1/sqrt(radix).
 *> \endverbatim
 *
 *  Arguments:
@@ -57,7 +63,7 @@
 *> \param[in] A
 *> \verbatim
 *>          A is COMPLEX array, dimension (LDA,N)
-*>          The N-by-N symmetric positive definite matrix whose scaling
+*>          The N-by-N Hermitian positive definite matrix whose scaling
 *>          factors are to be computed.  Only the diagonal elements of A
 *>          are referenced.
 *> \endverbatim
index fcee160..1220f8f 100644 (file)
@@ -34,7 +34,7 @@
 *>
 *> \verbatim
 *>
-*> DPOEQU computes row and column scalings intended to equilibrate a
+*> DPOEQUB computes row and column scalings intended to equilibrate a
 *> symmetric positive definite matrix A and reduce its condition number
 *> (with respect to the two-norm).  S contains the scale factors,
 *> S(i) = 1/sqrt(A(i,i)), chosen so that the scaled matrix B with
 *> choice of S puts the condition number of B within a factor N of the
 *> smallest possible condition number over all possible diagonal
 *> scalings.
+*>
+*> This routine differs from DPOEQU by restricting the scaling factors
+*> to a power of the radix.  Barring over- and underflow, scaling by
+*> these factors introduces no additional rounding errors.  However, the
+*> scaled diagonal entries are no longer approximately 1 but lie
+*> between sqrt(radix) and 1/sqrt(radix).
 *> \endverbatim
 *
 *  Arguments:
index 523aee0..2242770 100644 (file)
@@ -34,7 +34,7 @@
 *>
 *> \verbatim
 *>
-*> SPOEQU computes row and column scalings intended to equilibrate a
+*> SPOEQUB computes row and column scalings intended to equilibrate a
 *> symmetric positive definite matrix A and reduce its condition number
 *> (with respect to the two-norm).  S contains the scale factors,
 *> S(i) = 1/sqrt(A(i,i)), chosen so that the scaled matrix B with
 *> choice of S puts the condition number of B within a factor N of the
 *> smallest possible condition number over all possible diagonal
 *> scalings.
+*>
+*> This routine differs from SPOEQU by restricting the scaling factors
+*> to a power of the radix.  Barring over- and underflow, scaling by
+*> these factors introduces no additional rounding errors.  However, the
+*> scaled diagonal entries are no longer approximately 1 but lie
+*> between sqrt(radix) and 1/sqrt(radix).
 *> \endverbatim
 *
 *  Arguments:
index c0d180c..b78470f 100644 (file)
 *> \verbatim
 *>
 *> ZPOEQUB computes row and column scalings intended to equilibrate a
-*> symmetric positive definite matrix A and reduce its condition number
+*> Hermitian positive definite matrix A and reduce its condition number
 *> (with respect to the two-norm).  S contains the scale factors,
 *> S(i) = 1/sqrt(A(i,i)), chosen so that the scaled matrix B with
 *> elements B(i,j) = S(i)*A(i,j)*S(j) has ones on the diagonal.  This
 *> choice of S puts the condition number of B within a factor N of the
 *> smallest possible condition number over all possible diagonal
 *> scalings.
+*>
+*> This routine differs from ZPOEQU by restricting the scaling factors
+*> to a power of the radix.  Barring over- and underflow, scaling by
+*> these factors introduces no additional rounding errors.  However, the
+*> scaled diagonal entries are no longer approximately 1 but lie
+*> between sqrt(radix) and 1/sqrt(radix).
 *> \endverbatim
 *
 *  Arguments:
@@ -57,7 +63,7 @@
 *> \param[in] A
 *> \verbatim
 *>          A is COMPLEX*16 array, dimension (LDA,N)
-*>          The N-by-N symmetric positive definite matrix whose scaling
+*>          The N-by-N Hermitian positive definite matrix whose scaling
 *>          factors are to be computed.  Only the diagonal elements of A
 *>          are referenced.
 *> \endverbatim