summaryrefslogtreecommitdiff
path: root/BLAS/SRC/daxpy.f
diff options
context:
space:
mode:
authorlangou <julien.langou@ucdenver.edu>2017-06-12 12:40:35 +0000
committerGitHub <noreply@github.com>2017-06-12 12:40:35 +0000
commitb8e8440bfa36fff8fc0036fb061546dc555eaba4 (patch)
treea09d6e2826a1f36997b948c1e7a8646f41428c93 /BLAS/SRC/daxpy.f
parenta26a82ff4a30a9240767621e8f0fe30390c55446 (diff)
parentc4ef454bc2cd586727a3ce55c578ffe62bfd856d (diff)
downloadlapack-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/daxpy.f')
-rw-r--r--BLAS/SRC/daxpy.f37
1 files changed, 37 insertions, 0 deletions
diff --git a/BLAS/SRC/daxpy.f b/BLAS/SRC/daxpy.f
index 5203e50c..cb94fc1e 100644
--- a/BLAS/SRC/daxpy.f
+++ b/BLAS/SRC/daxpy.f
@@ -28,6 +28,43 @@
*> uses unrolled loops for increments equal to one.
*> \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] 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
+*>
+*> \param[in,out] DY
+*> \verbatim
+*> DY is DOUBLE PRECISION array, dimension ( 1 + ( N - 1 )*abs( INCY ) )
+*> \endverbatim
+*>
+*> \param[in] INCY
+*> \verbatim
+*> INCY is INTEGER
+*> storage spacing between elements of DY
+*> \endverbatim
+*
* Authors:
* ========
*