summaryrefslogtreecommitdiff
path: root/BLAS/SRC/zgbmv.f
diff options
context:
space:
mode:
authorHenning Thielemann <git@henning-thielemann.de>2017-06-09 14:22:41 +0200
committerHenning Thielemann <git@henning-thielemann.de>2017-06-09 14:22:41 +0200
commit98fd66325bd6900becd886df52293158d14096a3 (patch)
treeac75d7d062efb42907b7da58de14a35abf8af04f /BLAS/SRC/zgbmv.f
parente3780628f3d5543cb70cff2e4f5143a95ace0d4e (diff)
downloadlapack-98fd66325bd6900becd886df52293158d14096a3.tar.gz
lapack-98fd66325bd6900becd886df52293158d14096a3.tar.bz2
lapack-98fd66325bd6900becd886df52293158d14096a3.zip
BLAS doxygen array parameter comments: use the same format as LAPACK
i.e. "A is TYPE array, dimension ( LDx, N )"
Diffstat (limited to 'BLAS/SRC/zgbmv.f')
-rw-r--r--BLAS/SRC/zgbmv.f6
1 files changed, 3 insertions, 3 deletions
diff --git a/BLAS/SRC/zgbmv.f b/BLAS/SRC/zgbmv.f
index f49da221..7303df87 100644
--- a/BLAS/SRC/zgbmv.f
+++ b/BLAS/SRC/zgbmv.f
@@ -87,7 +87,7 @@
*>
*> \param[in] A
*> \verbatim
-*> A is COMPLEX*16 array of DIMENSION ( LDA, n ).
+*> A is COMPLEX*16 array, dimension ( LDA, N )
*> Before entry, the leading ( kl + ku + 1 ) by n part of the
*> array A must contain the matrix of coefficients, supplied
*> column by column, with the leading diagonal of the matrix in
@@ -118,7 +118,7 @@
*>
*> \param[in] X
*> \verbatim
-*> X is COMPLEX*16 array of DIMENSION at least
+*> X is COMPLEX*16 array, dimension at least
*> ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n'
*> and at least
*> ( 1 + ( m - 1 )*abs( INCX ) ) otherwise.
@@ -142,7 +142,7 @@
*>
*> \param[in,out] Y
*> \verbatim
-*> Y is COMPLEX*16 array of DIMENSION at least
+*> Y is COMPLEX*16 array, dimension at least
*> ( 1 + ( m - 1 )*abs( INCY ) ) when TRANS = 'N' or 'n'
*> and at least
*> ( 1 + ( n - 1 )*abs( INCY ) ) otherwise.