diff options
author | langou <julien.langou@ucdenver.edu> | 2017-06-12 12:40:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 12:40:35 +0000 |
commit | b8e8440bfa36fff8fc0036fb061546dc555eaba4 (patch) | |
tree | a09d6e2826a1f36997b948c1e7a8646f41428c93 /BLAS/SRC/csscal.f | |
parent | a26a82ff4a30a9240767621e8f0fe30390c55446 (diff) | |
parent | c4ef454bc2cd586727a3ce55c578ffe62bfd856d (diff) | |
download | lapack-b8e8440bfa36fff8fc0036fb061546dc555eaba4.tar.gz lapack-b8e8440bfa36fff8fc0036fb061546dc555eaba4.tar.bz2 lapack-b8e8440bfa36fff8fc0036fb061546dc555eaba4.zip |
Merge pull request #167 from thielema/blas-parameter-comments
Added and straightened Doxygen comments on BLAS parameters.
Diffstat (limited to 'BLAS/SRC/csscal.f')
-rw-r--r-- | BLAS/SRC/csscal.f | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/BLAS/SRC/csscal.f b/BLAS/SRC/csscal.f index dc02654f..07c5ba10 100644 --- a/BLAS/SRC/csscal.f +++ b/BLAS/SRC/csscal.f @@ -27,6 +27,32 @@ *> CSSCAL scales a complex vector by a real constant. *> \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] 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 CX +*> \endverbatim +* * Authors: * ======== * |