summaryrefslogtreecommitdiff
path: root/SRC/spptrs.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
committerjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
commitf2953573ede24d7f8c01fdb18de48f65f00a9943 (patch)
tree53172aa9083b9aa1abe2d6c130f7c173d8d8725b /SRC/spptrs.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
downloadlapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.gz
lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.bz2
lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.zip
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/spptrs.f')
-rw-r--r--SRC/spptrs.f8
1 files changed, 4 insertions, 4 deletions
diff --git a/SRC/spptrs.f b/SRC/spptrs.f
index d729ed13..b099f55a 100644
--- a/SRC/spptrs.f
+++ b/SRC/spptrs.f
@@ -96,11 +96,11 @@
*
IF( UPPER ) THEN
*
-* Solve A*X = B where A = U'*U.
+* Solve A*X = B where A = U**T * U.
*
DO 10 I = 1, NRHS
*
-* Solve U'*X = B, overwriting B with X.
+* Solve U**T *X = B, overwriting B with X.
*
CALL STPSV( 'Upper', 'Transpose', 'Non-unit', N, AP,
$ B( 1, I ), 1 )
@@ -112,7 +112,7 @@
10 CONTINUE
ELSE
*
-* Solve A*X = B where A = L*L'.
+* Solve A*X = B where A = L * L**T.
*
DO 20 I = 1, NRHS
*
@@ -121,7 +121,7 @@
CALL STPSV( 'Lower', 'No transpose', 'Non-unit', N, AP,
$ B( 1, I ), 1 )
*
-* Solve L'*X = Y, overwriting B with X.
+* Solve L**T *X = Y, overwriting B with X.
*
CALL STPSV( 'Lower', 'Transpose', 'Non-unit', N, AP,
$ B( 1, I ), 1 )