diff options
author | langou <julien.langou@ucdenver.edu> | 2017-06-12 12:40:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 12:40:35 +0000 |
commit | b8e8440bfa36fff8fc0036fb061546dc555eaba4 (patch) | |
tree | a09d6e2826a1f36997b948c1e7a8646f41428c93 /BLAS/SRC/stbmv.f | |
parent | a26a82ff4a30a9240767621e8f0fe30390c55446 (diff) | |
parent | c4ef454bc2cd586727a3ce55c578ffe62bfd856d (diff) | |
download | lapack-b8e8440bfa36fff8fc0036fb061546dc555eaba4.tar.gz lapack-b8e8440bfa36fff8fc0036fb061546dc555eaba4.tar.bz2 lapack-b8e8440bfa36fff8fc0036fb061546dc555eaba4.zip |
Merge pull request #167 from thielema/blas-parameter-comments
Added and straightened Doxygen comments on BLAS parameters.
Diffstat (limited to 'BLAS/SRC/stbmv.f')
-rw-r--r-- | BLAS/SRC/stbmv.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BLAS/SRC/stbmv.f b/BLAS/SRC/stbmv.f index 4323864e..a714f205 100644 --- a/BLAS/SRC/stbmv.f +++ b/BLAS/SRC/stbmv.f @@ -90,7 +90,7 @@ *> *> \param[in] A *> \verbatim -*> A is REAL array of DIMENSION ( LDA, n ). +*> A is REAL array, dimension ( LDA, N ) *> Before entry with UPLO = 'U' or 'u', the leading ( k + 1 ) *> by n part of the array A must contain the upper triangular *> band part of the matrix of coefficients, supplied column by @@ -142,7 +142,7 @@ *> *> \param[in,out] X *> \verbatim -*> X is REAL array of dimension at least +*> X is REAL array, dimension at least *> ( 1 + ( n - 1 )*abs( INCX ) ). *> Before entry, the incremented array X must contain the n *> element vector x. On exit, X is overwritten with the |