| @@ -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 =========== | |||
| * | |||
| @@ -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. | |||
| *> | |||
| @@ -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: | |||
| @@ -1,4 +1,4 @@ | |||
| *> \brief \b CLASCL2 performs diagonal scaling on a vector. | |||
| *> \brief \b CLASCL2 performs diagonal scaling on a matrix. | |||
| * | |||
| * =========== DOCUMENTATION =========== | |||
| * | |||
| @@ -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. | |||
| @@ -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: | |||
| @@ -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 =========== | |||
| * | |||
| @@ -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. | |||
| *> | |||
| @@ -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: | |||
| @@ -1,4 +1,4 @@ | |||
| *> \brief \b DLASCL2 performs diagonal scaling on a vector. | |||
| *> \brief \b DLASCL2 performs diagonal scaling on a matrix. | |||
| * | |||
| * =========== DOCUMENTATION =========== | |||
| * | |||
| @@ -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. | |||
| *> | |||
| @@ -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: | |||
| @@ -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 =========== | |||
| * | |||
| @@ -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. | |||
| *> | |||
| @@ -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: | |||
| @@ -1,4 +1,4 @@ | |||
| *> \brief \b SLASCL2 performs diagonal scaling on a vector. | |||
| *> \brief \b SLASCL2 performs diagonal scaling on a matrix. | |||
| * | |||
| * =========== DOCUMENTATION =========== | |||
| * | |||
| @@ -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. | |||
| *> | |||
| @@ -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: | |||
| @@ -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 =========== | |||
| * | |||
| @@ -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. | |||
| *> | |||
| @@ -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: | |||
| @@ -1,4 +1,4 @@ | |||
| *> \brief \b ZLASCL2 performs diagonal scaling on a vector. | |||
| *> \brief \b ZLASCL2 performs diagonal scaling on a matrix. | |||
| * | |||
| * =========== DOCUMENTATION =========== | |||
| * | |||
| @@ -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. | |||
| *> | |||
| @@ -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: | |||