Skip to content

Commit

Permalink
comments fixed: 'Transpose' replaced by 'Conjugate transpose'
Browse files Browse the repository at this point in the history
  • Loading branch information
jip authored and weslleyspereira committed Apr 6, 2021
1 parent f93833e commit 31f0d91
Show file tree
Hide file tree
Showing 17 changed files with 29 additions and 29 deletions.
8 changes: 4 additions & 4 deletions SRC/cgemlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
*> \param[in] SIDE
*> \verbatim
*> SIDE is CHARACTER*1
*> = 'L': apply Q or Q**T from the Left;
*> = 'R': apply Q or Q**T from the Right.
*> = 'L': apply Q or Q**H from the Left;
*> = 'R': apply Q or Q**H from the Right.
*> \endverbatim
*>
*> \param[in] TRANS
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'T': Transpose, apply Q**T.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down Expand Up @@ -99,7 +99,7 @@
*> \verbatim
*> C is COMPLEX array, dimension (LDC,N)
*> On entry, the M-by-N matrix C.
*> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q.
*> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q.
*> \endverbatim
*>
*> \param[in] LDC
Expand Down
2 changes: 1 addition & 1 deletion SRC/cgemlqt.f
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
8 changes: 4 additions & 4 deletions SRC/cgemqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
*> \param[in] SIDE
*> \verbatim
*> SIDE is CHARACTER*1
*> = 'L': apply Q or Q**T from the Left;
*> = 'R': apply Q or Q**T from the Right.
*> = 'L': apply Q or Q**H from the Left;
*> = 'R': apply Q or Q**H from the Right.
*> \endverbatim
*>
*> \param[in] TRANS
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'T': Transpose, apply Q**T.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down Expand Up @@ -100,7 +100,7 @@
*> \verbatim
*> C is COMPLEX array, dimension (LDC,N)
*> On entry, the M-by-N matrix C.
*> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q.
*> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q.
*> \endverbatim
*>
*> \param[in] LDC
Expand Down
2 changes: 1 addition & 1 deletion SRC/cgemqrt.f
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/clamswlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/ctpmlqt.f
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/ctpmqrt.f
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/cunmql.f
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/cunmrq.f
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
8 changes: 4 additions & 4 deletions SRC/zgemlq.f
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
*> \param[in] SIDE
*> \verbatim
*> SIDE is CHARACTER*1
*> = 'L': apply Q or Q**T from the Left;
*> = 'R': apply Q or Q**T from the Right.
*> = 'L': apply Q or Q**H from the Left;
*> = 'R': apply Q or Q**H from the Right.
*> \endverbatim
*>
*> \param[in] TRANS
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'T': Transpose, apply Q**T.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down Expand Up @@ -98,7 +98,7 @@
*> \verbatim
*> C is COMPLEX*16 array, dimension (LDC,N)
*> On entry, the M-by-N matrix C.
*> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q.
*> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q.
*> \endverbatim
*>
*> \param[in] LDC
Expand Down
2 changes: 1 addition & 1 deletion SRC/zgemlqt.f
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
8 changes: 4 additions & 4 deletions SRC/zgemqr.f
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@
*> \param[in] SIDE
*> \verbatim
*> SIDE is CHARACTER*1
*> = 'L': apply Q or Q**T from the Left;
*> = 'R': apply Q or Q**T from the Right.
*> = 'L': apply Q or Q**H from the Left;
*> = 'R': apply Q or Q**H from the Right.
*> \endverbatim
*>
*> \param[in] TRANS
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'T': Transpose, apply Q**T.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down Expand Up @@ -100,7 +100,7 @@
*> \verbatim
*> C is COMPLEX*16 array, dimension (LDC,N)
*> On entry, the M-by-N matrix C.
*> On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q.
*> On exit, C is overwritten by Q*C or Q**H*C or C*Q**H or C*Q.
*> \endverbatim
*>
*> \param[in] LDC
Expand Down
2 changes: 1 addition & 1 deletion SRC/zgemqrt.f
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/ztpmlqt.f
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/ztpmqrt.f
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/zunmql.f
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down
2 changes: 1 addition & 1 deletion SRC/zunmrq.f
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
*> \verbatim
*> TRANS is CHARACTER*1
*> = 'N': No transpose, apply Q;
*> = 'C': Transpose, apply Q**H.
*> = 'C': Conjugate transpose, apply Q**H.
*> \endverbatim
*>
*> \param[in] M
Expand Down

0 comments on commit 31f0d91

Please sign in to comment.