diff options
Diffstat (limited to 'SRC/cpocon.f')
-rw-r--r-- | SRC/cpocon.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/cpocon.f b/SRC/cpocon.f index 9faf372d..526e4410 100644 --- a/SRC/cpocon.f +++ b/SRC/cpocon.f @@ -136,7 +136,7 @@ IF( KASE.NE.0 ) THEN IF( UPPER ) THEN * -* Multiply by inv(U'). +* Multiply by inv(U**H). * CALL CLATRS( 'Upper', 'Conjugate transpose', 'Non-unit', $ NORMIN, N, A, LDA, WORK, SCALEL, RWORK, INFO ) @@ -154,7 +154,7 @@ $ A, LDA, WORK, SCALEL, RWORK, INFO ) NORMIN = 'Y' * -* Multiply by inv(L'). +* Multiply by inv(L**H). * CALL CLATRS( 'Lower', 'Conjugate transpose', 'Non-unit', $ NORMIN, N, A, LDA, WORK, SCALEU, RWORK, INFO ) |