summaryrefslogtreecommitdiff
path: root/SRC/cla_geamv.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
committerjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
commitf2953573ede24d7f8c01fdb18de48f65f00a9943 (patch)
tree53172aa9083b9aa1abe2d6c130f7c173d8d8725b /SRC/cla_geamv.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
downloadlapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.gz
lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.bz2
lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.zip
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/cla_geamv.f')
-rw-r--r--SRC/cla_geamv.f26
1 files changed, 13 insertions, 13 deletions
diff --git a/SRC/cla_geamv.f b/SRC/cla_geamv.f
index e3593642..927cd87a 100644
--- a/SRC/cla_geamv.f
+++ b/SRC/cla_geamv.f
@@ -27,7 +27,7 @@
* CLA_GEAMV performs one of the matrix-vector operations
*
* y := alpha*abs(A)*abs(x) + beta*abs(y),
-* or y := alpha*abs(A)'*abs(x) + beta*abs(y),
+* or y := alpha*abs(A)**T*abs(x) + beta*abs(y),
*
* where alpha and beta are scalars, x and y are vectors and A is an
* m by n matrix.
@@ -49,37 +49,37 @@
* follows:
*
* BLAS_NO_TRANS y := alpha*abs(A)*abs(x) + beta*abs(y)
-* BLAS_TRANS y := alpha*abs(A')*abs(x) + beta*abs(y)
-* BLAS_CONJ_TRANS y := alpha*abs(A')*abs(x) + beta*abs(y)
+* BLAS_TRANS y := alpha*abs(A**T)*abs(x) + beta*abs(y)
+* BLAS_CONJ_TRANS y := alpha*abs(A**T)*abs(x) + beta*abs(y)
*
* Unchanged on exit.
*
-* M (input) 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 (input) 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 (input) REAL
+* ALPHA (input) REAL
* On entry, ALPHA specifies the scalar alpha.
* Unchanged on exit.
*
-* A (input) COMPLEX array, dimension (LDA,n)
+* A (input) COMPLEX array, dimension (LDA,n)
* Before entry, the leading m by n part of the array A must
* contain the matrix of coefficients.
* Unchanged on exit.
*
-* LDA (input) 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 (input) COMPLEX array, dimension
+* X (input) COMPLEX array, dimension
* ( 1 + ( n - 1 )*abs( INCX ) ) when TRANS = 'N' or 'n'
* and at least
* ( 1 + ( m - 1 )*abs( INCX ) ) otherwise.
@@ -87,17 +87,17 @@
* vector x.
* Unchanged on exit.
*
-* INCX (input) INTEGER
+* INCX (input) INTEGER
* On entry, INCX specifies the increment for the elements of
* X. INCX must not be zero.
* Unchanged on exit.
*
-* BETA (input) 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 (input/output) REAL array, dimension
+* 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.
@@ -105,7 +105,7 @@
* must contain the vector y. On exit, Y is overwritten by the
* updated vector y.
*
-* INCY (input) INTEGER
+* INCY (input) INTEGER
* On entry, INCY specifies the increment for the elements of
* Y. INCY must not be zero.
* Unchanged on exit.