summaryrefslogtreecommitdiff
path: root/SRC/sla_gbamv.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/sla_gbamv.f')
-rw-r--r--SRC/sla_gbamv.f24
1 files changed, 12 insertions, 12 deletions
diff --git a/SRC/sla_gbamv.f b/SRC/sla_gbamv.f
index d004243f..0c0f1c50 100644
--- a/SRC/sla_gbamv.f
+++ b/SRC/sla_gbamv.f
@@ -42,7 +42,7 @@
* Arguments
* ==========
*
-* TRANS - INTEGER
+* TRANS (input) INTEGER
* On entry, TRANS specifies the operation to be performed as
* follows:
*
@@ -52,23 +52,23 @@
*
* 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.
*
-* KL - INTEGER
+* KL (input) INTEGER
* The number of subdiagonals within the band of A. KL >= 0.
*
-* KU - INTEGER
+* KU (input) INTEGER
* The number of superdiagonals within the band of A. KU >= 0.
*
-* ALPHA - REAL
+* ALPHA (input) REAL
* On entry, ALPHA specifies the scalar alpha.
* Unchanged on exit.
*
@@ -77,13 +77,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 - REAL array of DIMENSION at least
+* X (input) REAL array, dimension
* ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n'
* and at least
* ( 1 + ( m - 1 )*abs( INCX ) ) otherwise.
@@ -91,17 +91,17 @@
* 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 + ( m - 1 )*abs( INCY ) ) when TRANS = 'N' or 'n'
* and at least
* ( 1 + ( n - 1 )*abs( INCY ) ) otherwise.
@@ -109,7 +109,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.