summaryrefslogtreecommitdiff
path: root/BLAS/SRC/zdotc.f
diff options
context:
space:
mode:
Diffstat (limited to 'BLAS/SRC/zdotc.f')
-rw-r--r--BLAS/SRC/zdotc.f68
1 files changed, 58 insertions, 10 deletions
diff --git a/BLAS/SRC/zdotc.f b/BLAS/SRC/zdotc.f
index 2f6b6532..4ed407d0 100644
--- a/BLAS/SRC/zdotc.f
+++ b/BLAS/SRC/zdotc.f
@@ -1,21 +1,69 @@
- COMPLEX*16 FUNCTION ZDOTC(N,ZX,INCX,ZY,INCY)
-* .. Scalar Arguments ..
- INTEGER INCX,INCY,N
-* ..
-* .. Array Arguments ..
- COMPLEX*16 ZX(*),ZY(*)
-* ..
+*> \brief \b ZDOTC
*
+* =========== DOCUMENTATION ===========
+*
+* Online html documentation available at
+* http://www.netlib.org/lapack/explore-html/
+*
+* Definition
+* ==========
+*
+* COMPLEX*16 FUNCTION ZDOTC(N,ZX,INCX,ZY,INCY)
+*
+* .. Scalar Arguments ..
+* INTEGER INCX,INCY,N
+* ..
+* .. Array Arguments ..
+* COMPLEX*16 ZX(*),ZY(*)
+* ..
+*
* Purpose
* =======
*
-* ZDOTC forms the dot product of a vector.
+*>\details \b Purpose:
+*>\verbatim
+*>
+*> ZDOTC forms the dot product of a vector.
+*>
+*>\endverbatim
+*
+* Authors
+* =======
+*
+*> \author Univ. of Tennessee
+*> \author Univ. of California Berkeley
+*> \author Univ. of Colorado Denver
+*> \author NAG Ltd.
+*
+*> \date November 2011
+*
+*> \ingroup complex16_blas_level1
+*
*
* Further Details
* ===============
+*>\details \b Further \b Details
+*> \verbatim
+*>
+*> jack dongarra, 3/11/78.
+*> modified 12/3/93, array(1) declarations changed to array(*)
+*>
+*> \endverbatim
+*>
+* =====================================================================
+ COMPLEX*16 FUNCTION ZDOTC(N,ZX,INCX,ZY,INCY)
+*
+* -- Reference BLAS level1 routine (version 3.4.0) --
+* -- Reference BLAS is a software package provided by Univ. of Tennessee, --
+* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
+* November 2011
*
-* jack dongarra, 3/11/78.
-* modified 12/3/93, array(1) declarations changed to array(*)
+* .. Scalar Arguments ..
+ INTEGER INCX,INCY,N
+* ..
+* .. Array Arguments ..
+ COMPLEX*16 ZX(*),ZY(*)
+* ..
*
* =====================================================================
*