Skip to content

Commit de83ba6

Browse files
committed
Fix typos in docs of variants of Cholesky and QR
1 parent f86d08b commit de83ba6

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

SRC/VARIANTS/cholesky/RL/cpotrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
C>\details \b Purpose:
2525
C>\verbatim
2626
C>
27-
C> CPOTRF computes the Cholesky factorization of a real Hermitian
27+
C> CPOTRF computes the Cholesky factorization of a complex Hermitian
2828
C> positive definite matrix A.
2929
C>
3030
C> The factorization has the form

SRC/VARIANTS/cholesky/RL/zpotrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
C>\details \b Purpose:
2525
C>\verbatim
2626
C>
27-
C> ZPOTRF computes the Cholesky factorization of a real Hermitian
27+
C> ZPOTRF computes the Cholesky factorization of a complex Hermitian
2828
C> positive definite matrix A.
2929
C>
3030
C> The factorization has the form

SRC/VARIANTS/cholesky/TOP/cpotrf.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
C>\details \b Purpose:
2525
C>\verbatim
2626
C>
27-
C> CPOTRF computes the Cholesky factorization of a real symmetric
27+
C> CPOTRF computes the Cholesky factorization of a complex Hermitian
2828
C> positive definite matrix A.
2929
C>
3030
C> The factorization has the form
@@ -55,7 +55,7 @@
5555
C> \param[in,out] A
5656
C> \verbatim
5757
C> A is COMPLEX array, dimension (LDA,N)
58-
C> On entry, the symmetric matrix A. If UPLO = 'U', the leading
58+
C> On entry, the Hermitian matrix A. If UPLO = 'U', the leading
5959
C> N-by-N upper triangular part of A contains the upper
6060
C> triangular part of the matrix A, and the strictly lower
6161
C> triangular part of A is not referenced. If UPLO = 'L', the

SRC/VARIANTS/cholesky/TOP/zpotrf.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
C>\details \b Purpose:
2525
C>\verbatim
2626
C>
27-
C> ZPOTRF computes the Cholesky factorization of a real symmetric
27+
C> ZPOTRF computes the Cholesky factorization of a complex Hermitian
2828
C> positive definite matrix A.
2929
C>
3030
C> The factorization has the form
@@ -55,7 +55,7 @@
5555
C> \param[in,out] A
5656
C> \verbatim
5757
C> A is COMPLEX*16 array, dimension (LDA,N)
58-
C> On entry, the symmetric matrix A. If UPLO = 'U', the leading
58+
C> On entry, the Hermitian matrix A. If UPLO = 'U', the leading
5959
C> N-by-N upper triangular part of A contains the upper
6060
C> triangular part of the matrix A, and the strictly lower
6161
C> triangular part of A is not referenced. If UPLO = 'L', the

SRC/VARIANTS/qr/LL/cgeqrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
C>\details \b Purpose:
2424
C>\verbatim
2525
C>
26-
C> CGEQRF computes a QR factorization of a real M-by-N matrix A:
26+
C> CGEQRF computes a QR factorization of a complex M-by-N matrix A:
2727
C> A = Q * R.
2828
C>
2929
C> This is the left-looking Level 3 BLAS version of the algorithm.

SRC/VARIANTS/qr/LL/zgeqrf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
C>\details \b Purpose:
2424
C>\verbatim
2525
C>
26-
C> ZGEQRF computes a QR factorization of a real M-by-N matrix A:
26+
C> ZGEQRF computes a QR factorization of a complex M-by-N matrix A:
2727
C> A = Q * R.
2828
C>
2929
C> This is the left-looking Level 3 BLAS version of the algorithm.

0 commit comments

Comments
 (0)