Skip to content

Commit

Permalink
Merge pull request Reference-LAPACK#747 from weslleyspereira/fix-733
Browse files Browse the repository at this point in the history
Fix wrong documentation as reported in Reference-LAPACK#733
  • Loading branch information
langou authored Nov 9, 2022
2 parents 1e7759a + f8b6b40 commit 5c5ddfd
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 41 deletions.
10 changes: 5 additions & 5 deletions SRC/clarscl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b CLARSCL2 performs reciprocal diagonal scaling on a vector.
*> \brief \b CLARSCL2 performs reciprocal diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -34,7 +34,7 @@
*>
*> \verbatim
*>
*> CLARSCL2 performs a reciprocal diagonal scaling on an vector:
*> CLARSCL2 performs a reciprocal diagonal scaling on a matrix:
*> x <-- inv(D) * x
*> where the REAL diagonal matrix D is stored as a vector.
*>
Expand Down Expand Up @@ -66,14 +66,14 @@
*> \param[in,out] X
*> \verbatim
*> X is COMPLEX array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down
12 changes: 6 additions & 6 deletions SRC/clascl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b CLASCL2 performs diagonal scaling on a vector.
*> \brief \b CLASCL2 performs diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -34,9 +34,9 @@
*>
*> \verbatim
*>
*> CLASCL2 performs a diagonal scaling on a vector:
*> CLASCL2 performs a diagonal scaling on a matrix:
*> x <-- D * x
*> where the diagonal REAL matrix D is stored as a vector.
*> where the diagonal REAL matrix D is stored as a matrix.
*>
*> Eventually to be replaced by BLAS_cge_diag_scale in the new BLAS
*> standard.
Expand Down Expand Up @@ -66,14 +66,14 @@
*> \param[in,out] X
*> \verbatim
*> X is COMPLEX array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down
10 changes: 5 additions & 5 deletions SRC/dlarscl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b DLARSCL2 performs reciprocal diagonal scaling on a vector.
*> \brief \b DLARSCL2 performs reciprocal diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -33,7 +33,7 @@
*>
*> \verbatim
*>
*> DLARSCL2 performs a reciprocal diagonal scaling on an vector:
*> DLARSCL2 performs a reciprocal diagonal scaling on a matrix:
*> x <-- inv(D) * x
*> where the diagonal matrix D is stored as a vector.
*>
Expand Down Expand Up @@ -65,14 +65,14 @@
*> \param[in,out] X
*> \verbatim
*> X is DOUBLE PRECISION array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down
10 changes: 5 additions & 5 deletions SRC/dlascl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b DLASCL2 performs diagonal scaling on a vector.
*> \brief \b DLASCL2 performs diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -33,7 +33,7 @@
*>
*> \verbatim
*>
*> DLASCL2 performs a diagonal scaling on a vector:
*> DLASCL2 performs a diagonal scaling on a matrix:
*> x <-- D * x
*> where the diagonal matrix D is stored as a vector.
*>
Expand Down Expand Up @@ -65,14 +65,14 @@
*> \param[in,out] X
*> \verbatim
*> X is DOUBLE PRECISION array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down
10 changes: 5 additions & 5 deletions SRC/slarscl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b SLARSCL2 performs reciprocal diagonal scaling on a vector.
*> \brief \b SLARSCL2 performs reciprocal diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -33,7 +33,7 @@
*>
*> \verbatim
*>
*> SLARSCL2 performs a reciprocal diagonal scaling on an vector:
*> SLARSCL2 performs a reciprocal diagonal scaling on a matrix:
*> x <-- inv(D) * x
*> where the diagonal matrix D is stored as a vector.
*>
Expand Down Expand Up @@ -65,14 +65,14 @@
*> \param[in,out] X
*> \verbatim
*> X is REAL array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down
10 changes: 5 additions & 5 deletions SRC/slascl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b SLASCL2 performs diagonal scaling on a vector.
*> \brief \b SLASCL2 performs diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -33,7 +33,7 @@
*>
*> \verbatim
*>
*> SLASCL2 performs a diagonal scaling on a vector:
*> SLASCL2 performs a diagonal scaling on a matrix:
*> x <-- D * x
*> where the diagonal matrix D is stored as a vector.
*>
Expand Down Expand Up @@ -65,14 +65,14 @@
*> \param[in,out] X
*> \verbatim
*> X is REAL array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down
10 changes: 5 additions & 5 deletions SRC/zlarscl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b ZLARSCL2 performs reciprocal diagonal scaling on a vector.
*> \brief \b ZLARSCL2 performs reciprocal diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -34,7 +34,7 @@
*>
*> \verbatim
*>
*> ZLARSCL2 performs a reciprocal diagonal scaling on an vector:
*> ZLARSCL2 performs a reciprocal diagonal scaling on a matrix:
*> x <-- inv(D) * x
*> where the DOUBLE PRECISION diagonal matrix D is stored as a vector.
*>
Expand Down Expand Up @@ -66,14 +66,14 @@
*> \param[in,out] X
*> \verbatim
*> X is COMPLEX*16 array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down
10 changes: 5 additions & 5 deletions SRC/zlascl2.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*> \brief \b ZLASCL2 performs diagonal scaling on a vector.
*> \brief \b ZLASCL2 performs diagonal scaling on a matrix.
*
* =========== DOCUMENTATION ===========
*
Expand Down Expand Up @@ -34,7 +34,7 @@
*>
*> \verbatim
*>
*> ZLASCL2 performs a diagonal scaling on a vector:
*> ZLASCL2 performs a diagonal scaling on a matrix:
*> x <-- D * x
*> where the DOUBLE PRECISION diagonal matrix D is stored as a vector.
*>
Expand Down Expand Up @@ -66,14 +66,14 @@
*> \param[in,out] X
*> \verbatim
*> X is COMPLEX*16 array, dimension (LDX,N)
*> On entry, the vector X to be scaled by D.
*> On exit, the scaled vector.
*> On entry, the matrix X to be scaled by D.
*> On exit, the scaled matrix.
*> \endverbatim
*>
*> \param[in] LDX
*> \verbatim
*> LDX is INTEGER
*> The leading dimension of the vector X. LDX >= M.
*> The leading dimension of the matrix X. LDX >= M.
*> \endverbatim
*
* Authors:
Expand Down

0 comments on commit 5c5ddfd

Please sign in to comment.