Skip to content

Commit 47c5704

Browse files
committed
comments unified: replace a notation ||expr|| by norm(expr) in xQRT17
1 parent 2f9f42b commit 47c5704

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

TESTING/LIN/cqrt17.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
*>
2929
*> CQRT17 computes the ratio
3030
*>
31-
*> || R**H * op(A) ||/(||A||*alpha*max(M,N,NRHS)*eps)
31+
*> norm(R**H * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
3333
*> where R = op(A)*X - B, op(A) is A or A**H, and
3434
*>
35-
*> alpha = ||B|| if IRESID = 1 (zero-residual problem)
36-
*> alpha = ||R|| if IRESID = 2 (otherwise).
35+
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
36+
*> alpha = norm(R) if IRESID = 2 (otherwise).
3737
*> \endverbatim
3838
*
3939
* Arguments:

TESTING/LIN/dqrt17.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
*>
2929
*> DQRT17 computes the ratio
3030
*>
31-
*> || R**T * op(A) ||/(||A||*alpha*max(M,N,NRHS)*eps)
31+
*> norm(R**T * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
3333
*> where R = op(A)*X - B, op(A) is A or A**T, and
3434
*>
35-
*> alpha = ||B|| if IRESID = 1 (zero-residual problem)
36-
*> alpha = ||R|| if IRESID = 2 (otherwise).
35+
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
36+
*> alpha = norm(R) if IRESID = 2 (otherwise).
3737
*> \endverbatim
3838
*
3939
* Arguments:

TESTING/LIN/sqrt17.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
*>
2929
*> SQRT17 computes the ratio
3030
*>
31-
*> || R**T * op(A) ||/(||A||*alpha*max(M,N,NRHS)*eps)
31+
*> norm(R**T * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
3333
*> where R = op(A)*X - B, op(A) is A or A**T, and
3434
*>
35-
*> alpha = ||B|| if IRESID = 1 (zero-residual problem)
36-
*> alpha = ||R|| if IRESID = 2 (otherwise).
35+
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
36+
*> alpha = norm(R) if IRESID = 2 (otherwise).
3737
*> \endverbatim
3838
*
3939
* Arguments:

TESTING/LIN/zqrt17.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
*>
2929
*> ZQRT17 computes the ratio
3030
*>
31-
*> || R**H * op(A) ||/(||A||*alpha*max(M,N,NRHS)*eps)
31+
*> norm(R**H * op(A))/(norm(A)*alpha*max(M,N,NRHS)*eps),
3232
*>
3333
*> where R = op(A)*X - B, op(A) is A or A**H, and
3434
*>
35-
*> alpha = ||B|| if IRESID = 1 (zero-residual problem)
36-
*> alpha = ||R|| if IRESID = 2 (otherwise).
35+
*> alpha = norm(B) if IRESID = 1 (zero-residual problem)
36+
*> alpha = norm(R) if IRESID = 2 (otherwise).
3737
*> \endverbatim
3838
*
3939
* Arguments:

0 commit comments

Comments
 (0)