diff options
Diffstat (limited to 'SRC/sorglq.f')
-rw-r--r-- | SRC/sorglq.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/sorglq.f b/SRC/sorglq.f index d284670d..8285f32d 100644 --- a/SRC/sorglq.f +++ b/SRC/sorglq.f @@ -185,7 +185,7 @@ CALL SLARFT( 'Forward', 'Rowwise', N-I+1, IB, A( I, I ), $ LDA, TAU( I ), WORK, LDWORK ) * -* Apply H' to A(i+ib:m,i:n) from the right +* Apply H**T to A(i+ib:m,i:n) from the right * CALL SLARFB( 'Right', 'Transpose', 'Forward', 'Rowwise', $ M-I-IB+1, N-I+1, IB, A( I, I ), LDA, WORK, @@ -193,7 +193,7 @@ $ LDWORK ) END IF * -* Apply H' to columns i:n of current block +* Apply H**T to columns i:n of current block * CALL SORGL2( IB, N-I+1, IB, A( I, I ), LDA, TAU( I ), WORK, $ IINFO ) |