Skip to content

Commit adbf5b6

Browse files
committed
comments fixed: 'Transpose' replaced by 'Conjugate transpose'
1 parent 58e8674 commit adbf5b6

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

SRC/cherfsx.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@
122122
*> AF is COMPLEX array, dimension (LDAF,N)
123123
*> The factored form of the matrix A. AF contains the block
124124
*> diagonal matrix D and the multipliers used to obtain the
125-
*> factor U or L from the factorization A = U*D*U**T or A =
126-
*> L*D*L**T as computed by CHETRF.
125+
*> factor U or L from the factorization A = U*D*U**H or A =
126+
*> L*D*L**H as computed by CHETRF.
127127
*> \endverbatim
128128
*>
129129
*> \param[in] LDAF

SRC/chesvxx.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@
185185
*> If FACT = 'F', then AF is an input argument and on entry
186186
*> contains the block diagonal matrix D and the multipliers
187187
*> used to obtain the factor U or L from the factorization A =
188-
*> U*D*U**T or A = L*D*L**T as computed by CHETRF.
188+
*> U*D*U**H or A = L*D*L**H as computed by CHETRF.
189189
*>
190190
*> If FACT = 'N', then AF is an output argument and on exit
191191
*> returns the block diagonal matrix D and the multipliers
192192
*> used to obtain the factor U or L from the factorization A =
193-
*> U*D*U**T or A = L*D*L**T.
193+
*> U*D*U**H or A = L*D*L**H.
194194
*> \endverbatim
195195
*>
196196
*> \param[in] LDAF
@@ -649,7 +649,7 @@ SUBROUTINE CHESVXX( FACT, UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV,
649649
*
650650
IF( NOFACT .OR. EQUIL ) THEN
651651
*
652-
* Compute the LDL^T or UDU^T factorization of A.
652+
* Compute the LDL^H or UDU^H factorization of A.
653653
*
654654
CALL CLACPY( UPLO, N, N, A, LDA, AF, LDAF )
655655
CALL CHETRF( UPLO, N, AF, LDAF, IPIV, WORK, 5*MAX(1,N), INFO )

SRC/cporfsx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
*> \verbatim
123123
*> AF is COMPLEX array, dimension (LDAF,N)
124124
*> The triangular factor U or L from the Cholesky factorization
125-
*> A = U**T*U or A = L*L**T, as computed by CPOTRF.
125+
*> A = U**H*U or A = L*L**H, as computed by CPOTRF.
126126
*> \endverbatim
127127
*>
128128
*> \param[in] LDAF

SRC/zherfsx.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@
122122
*> AF is COMPLEX*16 array, dimension (LDAF,N)
123123
*> The factored form of the matrix A. AF contains the block
124124
*> diagonal matrix D and the multipliers used to obtain the
125-
*> factor U or L from the factorization A = U*D*U**T or A =
126-
*> L*D*L**T as computed by ZHETRF.
125+
*> factor U or L from the factorization A = U*D*U**H or A =
126+
*> L*D*L**H as computed by ZHETRF.
127127
*> \endverbatim
128128
*>
129129
*> \param[in] LDAF

SRC/zhesvxx.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@
185185
*> If FACT = 'F', then AF is an input argument and on entry
186186
*> contains the block diagonal matrix D and the multipliers
187187
*> used to obtain the factor U or L from the factorization A =
188-
*> U*D*U**T or A = L*D*L**T as computed by ZHETRF.
188+
*> U*D*U**H or A = L*D*L**H as computed by ZHETRF.
189189
*>
190190
*> If FACT = 'N', then AF is an output argument and on exit
191191
*> returns the block diagonal matrix D and the multipliers
192192
*> used to obtain the factor U or L from the factorization A =
193-
*> U*D*U**T or A = L*D*L**T.
193+
*> U*D*U**H or A = L*D*L**H.
194194
*> \endverbatim
195195
*>
196196
*> \param[in] LDAF
@@ -646,7 +646,7 @@ SUBROUTINE ZHESVXX( FACT, UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV,
646646
*
647647
IF( NOFACT .OR. EQUIL ) THEN
648648
*
649-
* Compute the LDL^T or UDU^T factorization of A.
649+
* Compute the LDL^H or UDU^H factorization of A.
650650
*
651651
CALL ZLACPY( UPLO, N, N, A, LDA, AF, LDAF )
652652
CALL ZHETRF( UPLO, N, AF, LDAF, IPIV, WORK, 5*MAX(1,N), INFO )

SRC/zporfsx.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
*> \verbatim
123123
*> AF is COMPLEX*16 array, dimension (LDAF,N)
124124
*> The triangular factor U or L from the Cholesky factorization
125-
*> A = U**T*U or A = L*L**T, as computed by ZPOTRF.
125+
*> A = U**H*U or A = L*L**H, as computed by ZPOTRF.
126126
*> \endverbatim
127127
*>
128128
*> \param[in] LDAF

0 commit comments

Comments
 (0)