summaryrefslogtreecommitdiff
path: root/BLAS/SRC/zhemm.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/zhemm.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/zhemm.f')
-rw-r--r--BLAS/SRC/zhemm.f6
1 files changed, 3 insertions, 3 deletions
diff --git a/BLAS/SRC/zhemm.f b/BLAS/SRC/zhemm.f
index 45a5eabd..d63778b7 100644
--- a/BLAS/SRC/zhemm.f
+++ b/BLAS/SRC/zhemm.f
@@ -87,7 +87,7 @@
*>
*> \param[in] A
*> \verbatim
-*> A is COMPLEX*16 array of DIMENSION ( LDA, ka ), where ka is
+*> A is COMPLEX*16 array, dimension ( LDA, ka ), where ka is
*> m when SIDE = 'L' or 'l' and is n otherwise.
*> Before entry with SIDE = 'L' or 'l', the m by m part of
*> the array A must contain the hermitian matrix, such that
@@ -124,7 +124,7 @@
*>
*> \param[in] B
*> \verbatim
-*> B is COMPLEX*16 array of DIMENSION ( LDB, n ).
+*> B is COMPLEX*16 array, dimension ( LDB, N )
*> Before entry, the leading m by n part of the array B must
*> contain the matrix B.
*> \endverbatim
@@ -146,7 +146,7 @@
*>
*> \param[in,out] C
*> \verbatim
-*> C is COMPLEX*16 array of DIMENSION ( LDC, n ).
+*> C is COMPLEX*16 array, dimension ( LDC, N )
*> Before entry, the leading m by n part of the array C must
*> contain the matrix C, except when beta is zero, in which
*> case C need not be set on entry.