Skip to content

Commit 5c5ddfd

Browse files
authored
Merge pull request #747 from weslleyspereira/fix-733
Fix wrong documentation as reported in #733
2 parents 1e7759a + f8b6b40 commit 5c5ddfd

File tree

8 files changed

+41
-41
lines changed

8 files changed

+41
-41
lines changed

SRC/clarscl2.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b CLARSCL2 performs reciprocal diagonal scaling on a vector.
1+
*> \brief \b CLARSCL2 performs reciprocal diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -34,7 +34,7 @@
3434
*>
3535
*> \verbatim
3636
*>
37-
*> CLARSCL2 performs a reciprocal diagonal scaling on an vector:
37+
*> CLARSCL2 performs a reciprocal diagonal scaling on a matrix:
3838
*> x <-- inv(D) * x
3939
*> where the REAL diagonal matrix D is stored as a vector.
4040
*>
@@ -66,14 +66,14 @@
6666
*> \param[in,out] X
6767
*> \verbatim
6868
*> X is COMPLEX array, dimension (LDX,N)
69-
*> On entry, the vector X to be scaled by D.
70-
*> On exit, the scaled vector.
69+
*> On entry, the matrix X to be scaled by D.
70+
*> On exit, the scaled matrix.
7171
*> \endverbatim
7272
*>
7373
*> \param[in] LDX
7474
*> \verbatim
7575
*> LDX is INTEGER
76-
*> The leading dimension of the vector X. LDX >= M.
76+
*> The leading dimension of the matrix X. LDX >= M.
7777
*> \endverbatim
7878
*
7979
* Authors:

SRC/clascl2.f

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b CLASCL2 performs diagonal scaling on a vector.
1+
*> \brief \b CLASCL2 performs diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -34,9 +34,9 @@
3434
*>
3535
*> \verbatim
3636
*>
37-
*> CLASCL2 performs a diagonal scaling on a vector:
37+
*> CLASCL2 performs a diagonal scaling on a matrix:
3838
*> x <-- D * x
39-
*> where the diagonal REAL matrix D is stored as a vector.
39+
*> where the diagonal REAL matrix D is stored as a matrix.
4040
*>
4141
*> Eventually to be replaced by BLAS_cge_diag_scale in the new BLAS
4242
*> standard.
@@ -66,14 +66,14 @@
6666
*> \param[in,out] X
6767
*> \verbatim
6868
*> X is COMPLEX array, dimension (LDX,N)
69-
*> On entry, the vector X to be scaled by D.
70-
*> On exit, the scaled vector.
69+
*> On entry, the matrix X to be scaled by D.
70+
*> On exit, the scaled matrix.
7171
*> \endverbatim
7272
*>
7373
*> \param[in] LDX
7474
*> \verbatim
7575
*> LDX is INTEGER
76-
*> The leading dimension of the vector X. LDX >= M.
76+
*> The leading dimension of the matrix X. LDX >= M.
7777
*> \endverbatim
7878
*
7979
* Authors:

SRC/dlarscl2.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b DLARSCL2 performs reciprocal diagonal scaling on a vector.
1+
*> \brief \b DLARSCL2 performs reciprocal diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -33,7 +33,7 @@
3333
*>
3434
*> \verbatim
3535
*>
36-
*> DLARSCL2 performs a reciprocal diagonal scaling on an vector:
36+
*> DLARSCL2 performs a reciprocal diagonal scaling on a matrix:
3737
*> x <-- inv(D) * x
3838
*> where the diagonal matrix D is stored as a vector.
3939
*>
@@ -65,14 +65,14 @@
6565
*> \param[in,out] X
6666
*> \verbatim
6767
*> X is DOUBLE PRECISION array, dimension (LDX,N)
68-
*> On entry, the vector X to be scaled by D.
69-
*> On exit, the scaled vector.
68+
*> On entry, the matrix X to be scaled by D.
69+
*> On exit, the scaled matrix.
7070
*> \endverbatim
7171
*>
7272
*> \param[in] LDX
7373
*> \verbatim
7474
*> LDX is INTEGER
75-
*> The leading dimension of the vector X. LDX >= M.
75+
*> The leading dimension of the matrix X. LDX >= M.
7676
*> \endverbatim
7777
*
7878
* Authors:

SRC/dlascl2.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b DLASCL2 performs diagonal scaling on a vector.
1+
*> \brief \b DLASCL2 performs diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -33,7 +33,7 @@
3333
*>
3434
*> \verbatim
3535
*>
36-
*> DLASCL2 performs a diagonal scaling on a vector:
36+
*> DLASCL2 performs a diagonal scaling on a matrix:
3737
*> x <-- D * x
3838
*> where the diagonal matrix D is stored as a vector.
3939
*>
@@ -65,14 +65,14 @@
6565
*> \param[in,out] X
6666
*> \verbatim
6767
*> X is DOUBLE PRECISION array, dimension (LDX,N)
68-
*> On entry, the vector X to be scaled by D.
69-
*> On exit, the scaled vector.
68+
*> On entry, the matrix X to be scaled by D.
69+
*> On exit, the scaled matrix.
7070
*> \endverbatim
7171
*>
7272
*> \param[in] LDX
7373
*> \verbatim
7474
*> LDX is INTEGER
75-
*> The leading dimension of the vector X. LDX >= M.
75+
*> The leading dimension of the matrix X. LDX >= M.
7676
*> \endverbatim
7777
*
7878
* Authors:

SRC/slarscl2.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b SLARSCL2 performs reciprocal diagonal scaling on a vector.
1+
*> \brief \b SLARSCL2 performs reciprocal diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -33,7 +33,7 @@
3333
*>
3434
*> \verbatim
3535
*>
36-
*> SLARSCL2 performs a reciprocal diagonal scaling on an vector:
36+
*> SLARSCL2 performs a reciprocal diagonal scaling on a matrix:
3737
*> x <-- inv(D) * x
3838
*> where the diagonal matrix D is stored as a vector.
3939
*>
@@ -65,14 +65,14 @@
6565
*> \param[in,out] X
6666
*> \verbatim
6767
*> X is REAL array, dimension (LDX,N)
68-
*> On entry, the vector X to be scaled by D.
69-
*> On exit, the scaled vector.
68+
*> On entry, the matrix X to be scaled by D.
69+
*> On exit, the scaled matrix.
7070
*> \endverbatim
7171
*>
7272
*> \param[in] LDX
7373
*> \verbatim
7474
*> LDX is INTEGER
75-
*> The leading dimension of the vector X. LDX >= M.
75+
*> The leading dimension of the matrix X. LDX >= M.
7676
*> \endverbatim
7777
*
7878
* Authors:

SRC/slascl2.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b SLASCL2 performs diagonal scaling on a vector.
1+
*> \brief \b SLASCL2 performs diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -33,7 +33,7 @@
3333
*>
3434
*> \verbatim
3535
*>
36-
*> SLASCL2 performs a diagonal scaling on a vector:
36+
*> SLASCL2 performs a diagonal scaling on a matrix:
3737
*> x <-- D * x
3838
*> where the diagonal matrix D is stored as a vector.
3939
*>
@@ -65,14 +65,14 @@
6565
*> \param[in,out] X
6666
*> \verbatim
6767
*> X is REAL array, dimension (LDX,N)
68-
*> On entry, the vector X to be scaled by D.
69-
*> On exit, the scaled vector.
68+
*> On entry, the matrix X to be scaled by D.
69+
*> On exit, the scaled matrix.
7070
*> \endverbatim
7171
*>
7272
*> \param[in] LDX
7373
*> \verbatim
7474
*> LDX is INTEGER
75-
*> The leading dimension of the vector X. LDX >= M.
75+
*> The leading dimension of the matrix X. LDX >= M.
7676
*> \endverbatim
7777
*
7878
* Authors:

SRC/zlarscl2.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b ZLARSCL2 performs reciprocal diagonal scaling on a vector.
1+
*> \brief \b ZLARSCL2 performs reciprocal diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -34,7 +34,7 @@
3434
*>
3535
*> \verbatim
3636
*>
37-
*> ZLARSCL2 performs a reciprocal diagonal scaling on an vector:
37+
*> ZLARSCL2 performs a reciprocal diagonal scaling on a matrix:
3838
*> x <-- inv(D) * x
3939
*> where the DOUBLE PRECISION diagonal matrix D is stored as a vector.
4040
*>
@@ -66,14 +66,14 @@
6666
*> \param[in,out] X
6767
*> \verbatim
6868
*> X is COMPLEX*16 array, dimension (LDX,N)
69-
*> On entry, the vector X to be scaled by D.
70-
*> On exit, the scaled vector.
69+
*> On entry, the matrix X to be scaled by D.
70+
*> On exit, the scaled matrix.
7171
*> \endverbatim
7272
*>
7373
*> \param[in] LDX
7474
*> \verbatim
7575
*> LDX is INTEGER
76-
*> The leading dimension of the vector X. LDX >= M.
76+
*> The leading dimension of the matrix X. LDX >= M.
7777
*> \endverbatim
7878
*
7979
* Authors:

SRC/zlascl2.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*> \brief \b ZLASCL2 performs diagonal scaling on a vector.
1+
*> \brief \b ZLASCL2 performs diagonal scaling on a matrix.
22
*
33
* =========== DOCUMENTATION ===========
44
*
@@ -34,7 +34,7 @@
3434
*>
3535
*> \verbatim
3636
*>
37-
*> ZLASCL2 performs a diagonal scaling on a vector:
37+
*> ZLASCL2 performs a diagonal scaling on a matrix:
3838
*> x <-- D * x
3939
*> where the DOUBLE PRECISION diagonal matrix D is stored as a vector.
4040
*>
@@ -66,14 +66,14 @@
6666
*> \param[in,out] X
6767
*> \verbatim
6868
*> X is COMPLEX*16 array, dimension (LDX,N)
69-
*> On entry, the vector X to be scaled by D.
70-
*> On exit, the scaled vector.
69+
*> On entry, the matrix X to be scaled by D.
70+
*> On exit, the scaled matrix.
7171
*> \endverbatim
7272
*>
7373
*> \param[in] LDX
7474
*> \verbatim
7575
*> LDX is INTEGER
76-
*> The leading dimension of the vector X. LDX >= M.
76+
*> The leading dimension of the matrix X. LDX >= M.
7777
*> \endverbatim
7878
*
7979
* Authors:

0 commit comments

Comments
 (0)