diff options
author | langou <langou@users.noreply.github.com> | 2015-09-03 03:05:54 +0000 |
---|---|---|
committer | langou <langou@users.noreply.github.com> | 2015-09-03 03:05:54 +0000 |
commit | 2f2f760e62094d2ab4643cfbdc5625f1ce380ab0 (patch) | |
tree | 76acb80b119598c71506103b5e1cab4836846840 /BLAS | |
parent | d8350cf73f3313b2d94763a2154a5404922b1f83 (diff) | |
download | lapack-2f2f760e62094d2ab4643cfbdc5625f1ce380ab0.tar.gz lapack-2f2f760e62094d2ab4643cfbdc5625f1ce380ab0.tar.bz2 lapack-2f2f760e62094d2ab4643cfbdc5625f1ce380ab0.zip |
Minor edits in the BLAS header to better describe the functionality.
See: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?t=4786
Diffstat (limited to 'BLAS')
-rw-r--r-- | BLAS/SRC/cdotc.f | 5 | ||||
-rw-r--r-- | BLAS/SRC/cdotu.f | 4 | ||||
-rw-r--r-- | BLAS/SRC/zdotc.f | 4 | ||||
-rw-r--r-- | BLAS/SRC/zdotu.f | 4 |
4 files changed, 12 insertions, 5 deletions
diff --git a/BLAS/SRC/cdotc.f b/BLAS/SRC/cdotc.f index 8e7d8b9d..95c49d95 100644 --- a/BLAS/SRC/cdotc.f +++ b/BLAS/SRC/cdotc.f @@ -23,8 +23,9 @@ *> *> \verbatim *> -*> forms the dot product of two vectors, conjugating the first -*> vector. +*> CDOTC forms the dot product of two complex vectors +*> CDOTC = X^H * Y +*> *> \endverbatim * * Authors: diff --git a/BLAS/SRC/cdotu.f b/BLAS/SRC/cdotu.f index 456a409f..338ddb07 100644 --- a/BLAS/SRC/cdotu.f +++ b/BLAS/SRC/cdotu.f @@ -23,7 +23,9 @@ *> *> \verbatim *> -*> CDOTU forms the dot product of two vectors. +*> CDOTU forms the dot product of two complex vectors +*> CDOTU = X^T * Y +*> *> \endverbatim * * Authors: diff --git a/BLAS/SRC/zdotc.f b/BLAS/SRC/zdotc.f index 660648bb..855989ec 100644 --- a/BLAS/SRC/zdotc.f +++ b/BLAS/SRC/zdotc.f @@ -23,7 +23,9 @@ *> *> \verbatim *> -*> ZDOTC forms the dot product of a vector. +*> ZDOTC forms the dot product of two complex vectors +*> ZDOTC = X^H * Y +*> *> \endverbatim * * Authors: diff --git a/BLAS/SRC/zdotu.f b/BLAS/SRC/zdotu.f index dd863521..389fb734 100644 --- a/BLAS/SRC/zdotu.f +++ b/BLAS/SRC/zdotu.f @@ -23,7 +23,9 @@ *> *> \verbatim *> -*> ZDOTU forms the dot product of two vectors. +*> ZDOTU forms the dot product of two complex vectors +*> ZDOTU = X^T * Y +*> *> \endverbatim * * Authors: |