summaryrefslogtreecommitdiff
path: root/SRC/dla_geamv.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2010-01-28 18:44:38 +0000
committerjulie <julielangou@users.noreply.github.com>2010-01-28 18:44:38 +0000
commit616eee3f2d29f2438fef25e1d044b000a3990c0f (patch)
tree38a83abb9258ab1583d789673e39035c7afff66f /SRC/dla_geamv.f
parentf020b6fd2f76145b2f4dae5112dc7d4e94383e7b (diff)
downloadlapack-616eee3f2d29f2438fef25e1d044b000a3990c0f.tar.gz
lapack-616eee3f2d29f2438fef25e1d044b000a3990c0f.tar.bz2
lapack-616eee3f2d29f2438fef25e1d044b000a3990c0f.zip
Polish some comments, etc.. for the C wrapper
Diffstat (limited to 'SRC/dla_geamv.f')
-rw-r--r--SRC/dla_geamv.f14
1 files changed, 7 insertions, 7 deletions
diff --git a/SRC/dla_geamv.f b/SRC/dla_geamv.f
index a047f139..03bc06f4 100644
--- a/SRC/dla_geamv.f
+++ b/SRC/dla_geamv.f
@@ -42,7 +42,7 @@
* Arguments
* ==========
*
-* TRANS - INTEGER
+* TRANS (input) INTEGER
* On entry, TRANS specifies the operation to be performed as
* follows:
*
@@ -52,12 +52,12 @@
*
* Unchanged on exit.
*
-* M - INTEGER
+* M (input) INTEGER
* On entry, M specifies the number of rows of the matrix A.
* M must be at least zero.
* Unchanged on exit.
*
-* N - INTEGER
+* N (input) INTEGER
* On entry, N specifies the number of columns of the matrix A.
* N must be at least zero.
* Unchanged on exit.
@@ -71,13 +71,13 @@
* contain the matrix of coefficients.
* Unchanged on exit.
*
-* LDA - INTEGER
+* LDA (input) INTEGER
* On entry, LDA specifies the first dimension of A as declared
* in the calling (sub) program. LDA must be at least
* max( 1, m ).
* Unchanged on exit.
*
-* X - DOUBLE PRECISION array of DIMENSION at least
+* X (input) DOUBLE PRECISION array, dimension
* ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n'
* and at least
* ( 1 + ( m - 1 )*abs( INCX ) ) otherwise.
@@ -85,7 +85,7 @@
* vector x.
* Unchanged on exit.
*
-* INCX - INTEGER
+* INCX (input) INTEGER
* On entry, INCX specifies the increment for the elements of
* X. INCX must not be zero.
* Unchanged on exit.
@@ -104,7 +104,7 @@
* must contain the vector y. On exit, Y is overwritten by the
* updated vector y.
*
-* INCY - INTEGER
+* INCY (input) INTEGER
* On entry, INCY specifies the increment for the elements of
* Y. INCY must not be zero.
* Unchanged on exit.