File tree Expand file tree Collapse file tree 8 files changed +41
-41
lines changed Expand file tree Collapse file tree 8 files changed +41
-41
lines changed Original file line number Diff line number Diff line change 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*
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* >
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:
Original file line number Diff line number Diff line change 1- * > \brief \b CLASCL2 performs diagonal scaling on a vector .
1+ * > \brief \b CLASCL2 performs diagonal scaling on a matrix .
22*
33* =========== DOCUMENTATION ===========
44*
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.
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:
Original file line number Diff line number Diff line change 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*
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* >
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:
Original file line number Diff line number Diff line change 1- * > \brief \b DLASCL2 performs diagonal scaling on a vector .
1+ * > \brief \b DLASCL2 performs diagonal scaling on a matrix .
22*
33* =========== DOCUMENTATION ===========
44*
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* >
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:
Original file line number Diff line number Diff line change 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*
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* >
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:
Original file line number Diff line number Diff line change 1- * > \brief \b SLASCL2 performs diagonal scaling on a vector .
1+ * > \brief \b SLASCL2 performs diagonal scaling on a matrix .
22*
33* =========== DOCUMENTATION ===========
44*
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* >
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:
Original file line number Diff line number Diff line change 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*
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* >
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:
Original file line number Diff line number Diff line change 1- * > \brief \b ZLASCL2 performs diagonal scaling on a vector .
1+ * > \brief \b ZLASCL2 performs diagonal scaling on a matrix .
22*
33* =========== DOCUMENTATION ===========
44*
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* >
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:
You can’t perform that action at this time.
0 commit comments