diff options
Diffstat (limited to 'SRC/cpptrs.f')
-rw-r--r-- | SRC/cpptrs.f | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/SRC/cpptrs.f b/SRC/cpptrs.f index f9d2c2fd..dc06efaf 100644 --- a/SRC/cpptrs.f +++ b/SRC/cpptrs.f @@ -96,11 +96,11 @@ * IF( UPPER ) THEN * -* Solve A*X = B where A = U'*U. +* Solve A*X = B where A = U**H * U. * DO 10 I = 1, NRHS * -* Solve U'*X = B, overwriting B with X. +* Solve U**H *X = B, overwriting B with X. * CALL CTPSV( 'Upper', 'Conjugate 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**H. * DO 20 I = 1, NRHS * @@ -121,7 +121,7 @@ CALL CTPSV( 'Lower', 'No transpose', 'Non-unit', N, AP, $ B( 1, I ), 1 ) * -* Solve L'*X = Y, overwriting B with X. +* Solve L**H *X = Y, overwriting B with X. * CALL CTPSV( 'Lower', 'Conjugate transpose', 'Non-unit', N, $ AP, B( 1, I ), 1 ) |