summaryrefslogtreecommitdiff
path: root/SRC/cla_syamv.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/cla_syamv.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/cla_syamv.f')
-rw-r--r--SRC/cla_syamv.f18
1 files changed, 9 insertions, 9 deletions
diff --git a/SRC/cla_syamv.f b/SRC/cla_syamv.f
index 3ea05931..61aa2a46 100644
--- a/SRC/cla_syamv.f
+++ b/SRC/cla_syamv.f
@@ -43,7 +43,7 @@
* Arguments
* ==========
*
-* UPLO - INTEGER
+* UPLO (input) INTEGER
* On entry, UPLO specifies whether the upper or lower
* triangular part of the array A is to be referenced as
* follows:
@@ -56,12 +56,12 @@
*
* 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.
*
-* ALPHA - REAL .
+* ALPHA (input) REAL .
* On entry, ALPHA specifies the scalar alpha.
* Unchanged on exit.
*
@@ -70,35 +70,35 @@
* 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, n ).
* Unchanged on exit.
*
-* X - COMPLEX array of DIMENSION at least
+* X (input) COMPLEX array, dimension
* ( 1 + ( n - 1 )*abs( INCX ) )
* Before entry, the incremented array X must contain the
* 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.
*
-* BETA - REAL .
+* BETA (input) REAL .
* On entry, BETA specifies the scalar beta. When BETA is
* supplied as zero then Y need not be set on input.
* Unchanged on exit.
*
-* Y - REAL array of DIMENSION at least
+* Y (input/output) REAL array, dimension
* ( 1 + ( n - 1 )*abs( INCY ) )
* Before entry with BETA non-zero, the incremented array Y
* 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.