summaryrefslogtreecommitdiff
path: root/BLAS/SRC/cdotu.f
diff options
context:
space:
mode:
Diffstat (limited to 'BLAS/SRC/cdotu.f')
-rw-r--r--BLAS/SRC/cdotu.f68
1 files changed, 58 insertions, 10 deletions
diff --git a/BLAS/SRC/cdotu.f b/BLAS/SRC/cdotu.f
index d31c16f0..00bc019b 100644
--- a/BLAS/SRC/cdotu.f
+++ b/BLAS/SRC/cdotu.f
@@ -1,21 +1,69 @@
- COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,INCY)
-* .. Scalar Arguments ..
- INTEGER INCX,INCY,N
-* ..
-* .. Array Arguments ..
- COMPLEX CX(*),CY(*)
-* ..
+*> \brief \b CDOTU
*
+* =========== DOCUMENTATION ===========
+*
+* Online html documentation available at
+* http://www.netlib.org/lapack/explore-html/
+*
+* Definition
+* ==========
+*
+* COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,INCY)
+*
+* .. Scalar Arguments ..
+* INTEGER INCX,INCY,N
+* ..
+* .. Array Arguments ..
+* COMPLEX CX(*),CY(*)
+* ..
+*
* Purpose
* =======
*
-* CDOTU forms the dot product of two vectors.
+*>\details \b Purpose:
+*>\verbatim
+*>
+*> CDOTU forms the dot product of two vectors.
+*>
+*>\endverbatim
+*
+* Authors
+* =======
+*
+*> \author Univ. of Tennessee
+*> \author Univ. of California Berkeley
+*> \author Univ. of Colorado Denver
+*> \author NAG Ltd.
+*
+*> \date November 2011
+*
+*> \ingroup complex_blas_level1
+*
*
* Further Details
* ===============
+*>\details \b Further \b Details
+*> \verbatim
+*>
+*> jack dongarra, linpack, 3/11/78.
+*> modified 12/3/93, array(1) declarations changed to array(*)
+*>
+*> \endverbatim
+*>
+* =====================================================================
+ COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,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, linpack, 3/11/78.
-* modified 12/3/93, array(1) declarations changed to array(*)
+* .. Scalar Arguments ..
+ INTEGER INCX,INCY,N
+* ..
+* .. Array Arguments ..
+ COMPLEX CX(*),CY(*)
+* ..
*
* =====================================================================
*