diff options
author | julie <julielangou@users.noreply.github.com> | 2010-01-28 18:44:38 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2010-01-28 18:44:38 +0000 |
commit | 616eee3f2d29f2438fef25e1d044b000a3990c0f (patch) | |
tree | 38a83abb9258ab1583d789673e39035c7afff66f /SRC/dtfsm.f | |
parent | f020b6fd2f76145b2f4dae5112dc7d4e94383e7b (diff) | |
download | lapack-616eee3f2d29f2438fef25e1d044b000a3990c0f.tar.gz lapack-616eee3f2d29f2438fef25e1d044b000a3990c0f.tar.bz2 lapack-616eee3f2d29f2438fef25e1d044b000a3990c0f.zip |
Polish some comments, etc.. for the C wrapper
Diffstat (limited to 'SRC/dtfsm.f')
-rw-r--r-- | SRC/dtfsm.f | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/SRC/dtfsm.f b/SRC/dtfsm.f index 668b3e8d..c2e290f3 100644 --- a/SRC/dtfsm.f +++ b/SRC/dtfsm.f @@ -40,11 +40,11 @@ * Arguments * ========== * -* TRANSR - (input) CHARACTER +* TRANSR (input) CHARACTER * = 'N': The Normal Form of RFP A is stored; * = 'T': The Transpose Form of RFP A is stored. * -* SIDE - (input) CHARACTER +* SIDE (input) CHARACTER * On entry, SIDE specifies whether op( A ) appears on the left * or right of X as follows: * @@ -54,7 +54,7 @@ * * Unchanged on exit. * -* UPLO - (input) CHARACTER +* UPLO (input) CHARACTER * On entry, UPLO specifies whether the RFP matrix A came from * an upper or lower triangular matrix as follows: * UPLO = 'U' or 'u' RFP A came from an upper triangular matrix @@ -62,7 +62,7 @@ * * Unchanged on exit. * -* TRANS - (input) CHARACTER +* TRANS (input) CHARACTER * On entry, TRANS specifies the form of op( A ) to be used * in the matrix multiplication as follows: * @@ -72,7 +72,7 @@ * * Unchanged on exit. * -* DIAG - (input) CHARACTER +* DIAG (input) CHARACTER * On entry, DIAG specifies whether or not RFP A is unit * triangular as follows: * @@ -83,23 +83,23 @@ * * Unchanged on exit. * -* M - (input) INTEGER. +* M (input) INTEGER * On entry, M specifies the number of rows of B. M must be at * least zero. * Unchanged on exit. * -* N - (input) INTEGER. +* N (input) INTEGER * On entry, N specifies the number of columns of B. N must be * at least zero. * Unchanged on exit. * -* ALPHA - (input) DOUBLE PRECISION. +* ALPHA (input) DOUBLE PRECISION * On entry, ALPHA specifies the scalar alpha. When alpha is * zero then A is not referenced and B need not be set before * entry. * Unchanged on exit. * -* A - (input) DOUBLE PRECISION array, dimension (NT); +* A (input) DOUBLE PRECISION array, dimension (NT) * NT = N*(N+1)/2. On entry, the matrix A in RFP Format. * RFP Format is described by TRANSR, UPLO and N as follows: * If TRANSR='N' then RFP A is (0:N,0:K-1) when N is even; @@ -115,12 +115,12 @@ * even and is N when is odd. * See the Note below for more details. Unchanged on exit. * -* B - (input/ouptut) DOUBLE PRECISION array, DIMENSION (LDB,N) +* B (input/output) DOUBLE PRECISION array, dimension (LDB,N) * Before entry, the leading m by n part of the array B must * contain the right-hand side matrix B, and on exit is * overwritten by the solution matrix X. * -* LDB - (input) INTEGER. +* LDB (input) INTEGER * On entry, LDB specifies the first dimension of B as declared * in the calling (sub) program. LDB must be at least * max( 1, m ). |