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/dznrm2.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/dznrm2.f')
-rw-r--r-- | BLAS/SRC/dznrm2.f | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/BLAS/SRC/dznrm2.f b/BLAS/SRC/dznrm2.f index 3b6bf613..e5a71d98 100644 --- a/BLAS/SRC/dznrm2.f +++ b/BLAS/SRC/dznrm2.f @@ -29,6 +29,27 @@ *> DZNRM2 := sqrt( x**H*x ) *> \endverbatim * +* Arguments: +* ========== +* +*> \param[in] N +*> \verbatim +*> N is INTEGER +*> number of elements in input vector(s) +*> \endverbatim +*> +*> \param[in] X +*> \verbatim +*> X is COMPLEX*16 array, dimension (N) +*> complex vector with N elements +*> \endverbatim +*> +*> \param[in] INCX +*> \verbatim +*> INCX is INTEGER +*> storage spacing between elements of X +*> \endverbatim +* * Authors: * ======== * |