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/scasum.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/scasum.f')
-rw-r--r-- | BLAS/SRC/scasum.f | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/BLAS/SRC/scasum.f b/BLAS/SRC/scasum.f index 5fc1a56a..0e9c137d 100644 --- a/BLAS/SRC/scasum.f +++ b/BLAS/SRC/scasum.f @@ -27,6 +27,26 @@ *> returns a single precision result. *> \endverbatim * +* Arguments: +* ========== +* +*> \param[in] N +*> \verbatim +*> N is INTEGER +*> number of elements in input vector(s) +*> \endverbatim +*> +*> \param[in,out] CX +*> \verbatim +*> CX is COMPLEX array, dimension ( 1 + ( N - 1 )*abs( INCX ) ) +*> \endverbatim +*> +*> \param[in] INCX +*> \verbatim +*> INCX is INTEGER +*> storage spacing between elements of SX +*> \endverbatim +* * Authors: * ======== * |