diff options
author | Henning Thielemann <git@henning-thielemann.de> | 2017-06-12 11:48:13 +0200 |
---|---|---|
committer | Henning Thielemann <git@henning-thielemann.de> | 2017-06-12 11:48:13 +0200 |
commit | 866ee11795433109f97d3c4c1712d2b301929885 (patch) | |
tree | 275b493e1a1c6a9269062a2f6c699a87dafe28f9 /BLAS/SRC/sscal.f | |
parent | bfe60f45713ec225ee565dd9a28bca0c99378511 (diff) | |
download | lapack-866ee11795433109f97d3c4c1712d2b301929885.tar.gz lapack-866ee11795433109f97d3c4c1712d2b301929885.tar.bz2 lapack-866ee11795433109f97d3c4c1712d2b301929885.zip |
BLAS: add Doxygen comments for parameters where missing
Diffstat (limited to 'BLAS/SRC/sscal.f')
-rw-r--r-- | BLAS/SRC/sscal.f | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/BLAS/SRC/sscal.f b/BLAS/SRC/sscal.f index 2ffc1a25..1a81109e 100644 --- a/BLAS/SRC/sscal.f +++ b/BLAS/SRC/sscal.f @@ -24,10 +24,36 @@ *> *> \verbatim *> -*> scales a vector by a constant. +*> SSCAL scales a vector by a constant. *> uses unrolled loops for increment equal to 1. *> \endverbatim * +* Arguments: +* ========== +* +*> \param[in] N +*> \verbatim +*> N is INTEGER +*> number of elements in input vector(s) +*> \endverbatim +*> +*> \param[in] SA +*> \verbatim +*> SA is REAL +*> On entry, SA specifies the scalar alpha. +*> \endverbatim +*> +*> \param[in,out] SX +*> \verbatim +*> SX is REAL array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) +*> \endverbatim +*> +*> \param[in] INCX +*> \verbatim +*> INCX is INTEGER +*> storage spacing between elements of SX +*> \endverbatim +* * Authors: * ======== * |