diff options
Diffstat (limited to 'SRC/zgeqrfp.f')
-rw-r--r-- | SRC/zgeqrfp.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/zgeqrfp.f b/SRC/zgeqrfp.f index a3d1d6e5..138aeb96 100644 --- a/SRC/zgeqrfp.f +++ b/SRC/zgeqrfp.f @@ -69,7 +69,7 @@ * * Each H(i) has the form * -* H(i) = I - tau * v * v' +* H(i) = I - tau * v * v**H * * where tau is a complex scalar, and v is a complex vector with * v(1:i-1) = 0 and v(i) = 1; v(i+1:m) is stored on exit in A(i+1:m,i), @@ -171,7 +171,7 @@ CALL ZLARFT( 'Forward', 'Columnwise', M-I+1, IB, $ A( I, I ), LDA, TAU( I ), WORK, LDWORK ) * -* Apply H' to A(i:m,i+ib:n) from the left +* Apply H**H to A(i:m,i+ib:n) from the left * CALL ZLARFB( 'Left', 'Conjugate transpose', 'Forward', $ 'Columnwise', M-I+1, N-I-IB+1, IB, |