summaryrefslogtreecommitdiff
path: root/BLAS/SRC/dscal.f
diff options
context:
space:
mode:
authorHenning Thielemann <git@henning-thielemann.de>2017-06-12 11:48:13 +0200
committerHenning Thielemann <git@henning-thielemann.de>2017-06-12 11:48:13 +0200
commit866ee11795433109f97d3c4c1712d2b301929885 (patch)
tree275b493e1a1c6a9269062a2f6c699a87dafe28f9 /BLAS/SRC/dscal.f
parentbfe60f45713ec225ee565dd9a28bca0c99378511 (diff)
downloadlapack-866ee11795433109f97d3c4c1712d2b301929885.tar.gz
lapack-866ee11795433109f97d3c4c1712d2b301929885.tar.bz2
lapack-866ee11795433109f97d3c4c1712d2b301929885.zip
BLAS: add Doxygen comments for parameters where missing
Diffstat (limited to 'BLAS/SRC/dscal.f')
-rw-r--r--BLAS/SRC/dscal.f28
1 files changed, 27 insertions, 1 deletions
diff --git a/BLAS/SRC/dscal.f b/BLAS/SRC/dscal.f
index 8bbfec6f..e0a92de6 100644
--- a/BLAS/SRC/dscal.f
+++ b/BLAS/SRC/dscal.f
@@ -25,7 +25,33 @@
*> \verbatim
*>
*> DSCAL scales a vector by a constant.
-*> uses unrolled loops for increment equal to one.
+*> 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] DA
+*> \verbatim
+*> DA is DOUBLE PRECISION
+*> On entry, DA specifies the scalar alpha.
+*> \endverbatim
+*>
+*> \param[in,out] DX
+*> \verbatim
+*> DX is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCX ) )
+*> \endverbatim
+*>
+*> \param[in] INCX
+*> \verbatim
+*> INCX is INTEGER
+*> storage spacing between elements of DX
*> \endverbatim
*
* Authors: