Skip to content

Commit 2f9f42b

Browse files
committed
comments unified and enhanced: TRANS parameter
1 parent bf04fe9 commit 2f9f42b

File tree

20 files changed

+40
-36
lines changed

20 files changed

+40
-36
lines changed

TESTING/EIG/clarhs.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
*> TRANS is CHARACTER*1
8686
*> Used only if A is nonsymmetric; specifies the operation
8787
*> applied to the matrix A.
88-
*> = 'N': B := A * X
89-
*> = 'T': B := A**T * X
90-
*> = 'C': B := A**H * X
88+
*> = 'N': B := A * X (No transpose)
89+
*> = 'T': B := A**T * X (Transpose)
90+
*> = 'C': B := A**H * X (Conjugate transpose)
9191
*> \endverbatim
9292
*>
9393
*> \param[in] M

TESTING/EIG/dlarhs.f

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@
7979
*> \param[in] TRANS
8080
*> \verbatim
8181
*> TRANS is CHARACTER*1
82-
*> Specifies the operation applied to the matrix A.
83-
*> = 'N': System is A * x = b
82+
*> Used only if A is nonsymmetric; specifies the operation
83+
*> applied to the matrix A.
84+
*> = 'N': B := A * X (No transpose)
8485
*> = 'T': B := A**T * X (Transpose)
8586
*> = 'C': B := A**H * X (Conjugate transpose = Transpose)
8687
*> \endverbatim

TESTING/EIG/slarhs.f

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@
7979
*> \param[in] TRANS
8080
*> \verbatim
8181
*> TRANS is CHARACTER*1
82-
*> Specifies the operation applied to the matrix A.
83-
*> = 'N': System is A * x = b
82+
*> Used only if A is nonsymmetric; specifies the operation
83+
*> applied to the matrix A.
84+
*> = 'N': B := A * X (No transpose)
8485
*> = 'T': B := A**T * X (Transpose)
8586
*> = 'C': B := A**H * X (Conjugate transpose = Transpose)
8687
*> \endverbatim

TESTING/EIG/zlarhs.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
*> TRANS is CHARACTER*1
8686
*> Used only if A is nonsymmetric; specifies the operation
8787
*> applied to the matrix A.
88-
*> = 'N': B := A * X
89-
*> = 'T': B := A**T * X
90-
*> = 'C': B := A**H * X
88+
*> = 'N': B := A * X (No transpose)
89+
*> = 'T': B := A**T * X (Transpose)
90+
*> = 'C': B := A**H * X (Conjugate transpose)
9191
*> \endverbatim
9292
*>
9393
*> \param[in] M

TESTING/LIN/cgbt05.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*> \verbatim
5151
*> TRANS is CHARACTER*1
5252
*> Specifies the form of the system of equations.
53-
*> = 'N': A * X = B (No transpose)
53+
*> = 'N': A * X = B (No transpose)
5454
*> = 'T': A**T * X = B (Transpose)
5555
*> = 'C': A**H * X = B (Conjugate transpose = Transpose)
5656
*> \endverbatim

TESTING/LIN/cgtt02.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*> \verbatim
4141
*> TRANS is CHARACTER
4242
*> Specifies the form of the residual.
43-
*> = 'N': B - A * X (No transpose)
43+
*> = 'N': B - A * X (No transpose)
4444
*> = 'T': B - A**T * X (Transpose)
4545
*> = 'C': B - A**H * X (Conjugate transpose)
4646
*> \endverbatim

TESTING/LIN/clarhs.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
*> TRANS is CHARACTER*1
8686
*> Used only if A is nonsymmetric; specifies the operation
8787
*> applied to the matrix A.
88-
*> = 'N': B := A * X
89-
*> = 'T': B := A**T * X
90-
*> = 'C': B := A**H * X
88+
*> = 'N': B := A * X (No transpose)
89+
*> = 'T': B := A**T * X (Transpose)
90+
*> = 'C': B := A**H * X (Conjugate transpose)
9191
*> \endverbatim
9292
*>
9393
*> \param[in] M

TESTING/LIN/ctbt02.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
*> \verbatim
5454
*> TRANS is CHARACTER*1
5555
*> Specifies the operation applied to A.
56-
*> = 'N': A *x = b (No transpose)
57-
*> = 'T': A**T *x = b (Transpose)
58-
*> = 'C': A**H *x = b (Conjugate transpose)
56+
*> = 'N': A * X = B (No transpose)
57+
*> = 'T': A**T * X = B (Transpose)
58+
*> = 'C': A**H * X = B (Conjugate transpose)
5959
*> \endverbatim
6060
*>
6161
*> \param[in] DIAG

TESTING/LIN/dgbt05.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*> \verbatim
5151
*> TRANS is CHARACTER*1
5252
*> Specifies the form of the system of equations.
53-
*> = 'N': A * X = B (No transpose)
53+
*> = 'N': A * X = B (No transpose)
5454
*> = 'T': A**T * X = B (Transpose)
5555
*> = 'C': A**H * X = B (Conjugate transpose = Transpose)
5656
*> \endverbatim

TESTING/LIN/dgtt02.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*> \verbatim
4141
*> TRANS is CHARACTER
4242
*> Specifies the form of the residual.
43-
*> = 'N': B - A * X (No transpose)
43+
*> = 'N': B - A * X (No transpose)
4444
*> = 'T': B - A**T * X (Transpose)
4545
*> = 'C': B - A**H * X (Conjugate transpose = Transpose)
4646
*> \endverbatim

0 commit comments

Comments
 (0)