Skip to content

Commit

Permalink
fixes comments in GELQT3 thanks to @hokb
Browse files Browse the repository at this point in the history
  • Loading branch information
weslleyspereira committed Jun 4, 2021
1 parent 08dc990 commit 8fca89b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SRC/cgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ RECURSIVE SUBROUTINE CGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL CLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
T(1,1)=CONJG(T(1,1))
Expand Down
2 changes: 1 addition & 1 deletion SRC/dgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ RECURSIVE SUBROUTINE DGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL DLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ RECURSIVE SUBROUTINE SGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL SLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
*
Expand Down
2 changes: 1 addition & 1 deletion SRC/zgelqt3.f
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ RECURSIVE SUBROUTINE ZGELQT3( M, N, A, LDA, T, LDT, INFO )
*
IF( M.EQ.1 ) THEN
*
* Compute Householder transform when N=1
* Compute Householder transform when M=1
*
CALL ZLARFG( N, A, A( 1, MIN( 2, N ) ), LDA, T )
T(1,1)=CONJG(T(1,1))
Expand Down

0 comments on commit 8fca89b

Please sign in to comment.