Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix typos in docs of variants of Cholesky and QR
  • Loading branch information
angsch committed Jun 2, 2023
commit de83ba6bb988a47311a4d5b3a37e32f62abe9c2a
2 changes: 1 addition & 1 deletion SRC/VARIANTS/cholesky/RL/cpotrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
C>\details \b Purpose:
C>\verbatim
C>
C> CPOTRF computes the Cholesky factorization of a real Hermitian
C> CPOTRF computes the Cholesky factorization of a complex Hermitian
C> positive definite matrix A.
C>
C> The factorization has the form
Expand Down
2 changes: 1 addition & 1 deletion SRC/VARIANTS/cholesky/RL/zpotrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
C>\details \b Purpose:
C>\verbatim
C>
C> ZPOTRF computes the Cholesky factorization of a real Hermitian
C> ZPOTRF computes the Cholesky factorization of a complex Hermitian
C> positive definite matrix A.
C>
C> The factorization has the form
Expand Down
4 changes: 2 additions & 2 deletions SRC/VARIANTS/cholesky/TOP/cpotrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
C>\details \b Purpose:
C>\verbatim
C>
C> CPOTRF computes the Cholesky factorization of a real symmetric
C> CPOTRF computes the Cholesky factorization of a complex Hermitian
C> positive definite matrix A.
C>
C> The factorization has the form
Expand Down Expand Up @@ -55,7 +55,7 @@
C> \param[in,out] A
C> \verbatim
C> A is COMPLEX array, dimension (LDA,N)
C> On entry, the symmetric matrix A. If UPLO = 'U', the leading
C> On entry, the Hermitian matrix A. If UPLO = 'U', the leading
C> N-by-N upper triangular part of A contains the upper
C> triangular part of the matrix A, and the strictly lower
C> triangular part of A is not referenced. If UPLO = 'L', the
Expand Down
4 changes: 2 additions & 2 deletions SRC/VARIANTS/cholesky/TOP/zpotrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
C>\details \b Purpose:
C>\verbatim
C>
C> ZPOTRF computes the Cholesky factorization of a real symmetric
C> ZPOTRF computes the Cholesky factorization of a complex Hermitian
C> positive definite matrix A.
C>
C> The factorization has the form
Expand Down Expand Up @@ -55,7 +55,7 @@
C> \param[in,out] A
C> \verbatim
C> A is COMPLEX*16 array, dimension (LDA,N)
C> On entry, the symmetric matrix A. If UPLO = 'U', the leading
C> On entry, the Hermitian matrix A. If UPLO = 'U', the leading
C> N-by-N upper triangular part of A contains the upper
C> triangular part of the matrix A, and the strictly lower
C> triangular part of A is not referenced. If UPLO = 'L', the
Expand Down
2 changes: 1 addition & 1 deletion SRC/VARIANTS/qr/LL/cgeqrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
C>\details \b Purpose:
C>\verbatim
C>
C> CGEQRF computes a QR factorization of a real M-by-N matrix A:
C> CGEQRF computes a QR factorization of a complex M-by-N matrix A:
C> A = Q * R.
C>
C> This is the left-looking Level 3 BLAS version of the algorithm.
Expand Down
2 changes: 1 addition & 1 deletion SRC/VARIANTS/qr/LL/zgeqrf.f
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
C>\details \b Purpose:
C>\verbatim
C>
C> ZGEQRF computes a QR factorization of a real M-by-N matrix A:
C> ZGEQRF computes a QR factorization of a complex M-by-N matrix A:
C> A = Q * R.
C>
C> This is the left-looking Level 3 BLAS version of the algorithm.
Expand Down