Skip to content

Commit 8671e8d

Browse files
committed
comments unified: about op(A) in xLARHS and xQRT17
1 parent 47c5704 commit 8671e8d

9 files changed

Lines changed: 9 additions & 13 deletions

File tree

TESTING/EIG/clarhs.f

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
*> CLARHS chooses a set of NRHS random solution vectors and sets
3131
*> up the right hand sides for the linear system
3232
*> op(A) * X = B,
33-
*> where op(A) = A, A**T (transpose of A) or A**H (conjugate
34-
*> transpose of A).
33+
*> where op(A) = A, A**T or A**H, depending on TRANS.
3534
*> \endverbatim
3635
*
3736
* Arguments:

TESTING/EIG/zlarhs.f

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
*> ZLARHS chooses a set of NRHS random solution vectors and sets
3131
*> up the right hand sides for the linear system
3232
*> op(A) * X = B,
33-
*> where op(A) = A, A**T (transpose of A), or A**H (conjugate
34-
*> transpose of A).
33+
*> where op(A) = A, A**T, or A**H, depending on TRANS.
3534
*> \endverbatim
3635
*
3736
* Arguments:

TESTING/LIN/clarhs.f

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
*> CLARHS chooses a set of NRHS random solution vectors and sets
3131
*> up the right hand sides for the linear system
3232
*> op(A) * X = B,
33-
*> where op(A) = A, A**T (transpose of A), or A**H (conjugate
34-
*> transpose of A).
33+
*> where op(A) = A, A**T, or A**H, depending on TRANS.
3534
*> \endverbatim
3635
*
3736
* Arguments:

TESTING/LIN/cqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*>
3131
*> norm(R**H * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
33-
*> where R = op(A)*X - B, op(A) is A or A**H, and
33+
*> where R = B - op(A)*X, op(A) is A or A**H, depending on TRANS, and
3434
*>
3535
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3636
*> alpha = norm(R) if IRESID = 2 (otherwise).

TESTING/LIN/dqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*>
3131
*> norm(R**T * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
33-
*> where R = op(A)*X - B, op(A) is A or A**T, and
33+
*> where R = B - op(A)*X, op(A) is A or A**T, depending on TRANS, and
3434
*>
3535
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3636
*> alpha = norm(R) if IRESID = 2 (otherwise).

TESTING/LIN/slarhs.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*> SLARHS chooses a set of NRHS random solution vectors and sets
3131
*> up the right hand sides for the linear system
3232
*> op(A) * X = B,
33-
*> where op(A) = A or A**T.
33+
*> where op(A) = A or A**T, depending on TRANS.
3434
*> \endverbatim
3535
*
3636
* Arguments:

TESTING/LIN/sqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*>
3131
*> norm(R**T * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
33-
*> where R = op(A)*X - B, op(A) is A or A**T, and
33+
*> where R = B - op(A)*X, op(A) is A or A**T, depending on TRANS, and
3434
*>
3535
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3636
*> alpha = norm(R) if IRESID = 2 (otherwise).

TESTING/LIN/zlarhs.f

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
*> ZLARHS chooses a set of NRHS random solution vectors and sets
3131
*> up the right hand sides for the linear system
3232
*> op(A) * X = B,
33-
*> where op(A) = A, A**T (transpose of A), or A**H (conjugate
34-
*> transpose of A).
33+
*> where op(A) = A, A**T, or A**H, depending on TRANS.
3534
*> \endverbatim
3635
*
3736
* Arguments:

TESTING/LIN/zqrt17.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*>
3131
*> norm(R**H * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
33-
*> where R = op(A)*X - B, op(A) is A or A**H, and
33+
*> where R = B - op(A)*X, op(A) is A or A**H, depending on TRANS, and
3434
*>
3535
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
3636
*> alpha = norm(R) if IRESID = 2 (otherwise).

0 commit comments

Comments
 (0)