diff options
author | julie <julielangou@users.noreply.github.com> | 2011-10-31 22:21:11 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2011-10-31 22:21:11 +0000 |
commit | 0d9e213c670ab0e68f17d68251412d53250108e1 (patch) | |
tree | 2bcab1c08b84e327b9be345385e2c31e8a26905a /BLAS/SRC/ssymm.f | |
parent | 82901cd3e7bb75c73fc3a17fe7bf922289337f97 (diff) | |
download | lapack-0d9e213c670ab0e68f17d68251412d53250108e1.tar.gz lapack-0d9e213c670ab0e68f17d68251412d53250108e1.tar.bz2 lapack-0d9e213c670ab0e68f17d68251412d53250108e1.zip |
Correct Warning detected during Doxygen Generation.
Now each routine should have the correct list of arguments.
This allowed to detect and fix problems in parameter description of many routines.
Diffstat (limited to 'BLAS/SRC/ssymm.f')
-rw-r--r-- | BLAS/SRC/ssymm.f | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/BLAS/SRC/ssymm.f b/BLAS/SRC/ssymm.f index 2253c537..0fc8fc5c 100644 --- a/BLAS/SRC/ssymm.f +++ b/BLAS/SRC/ssymm.f @@ -46,11 +46,9 @@ *> SIDE is CHARACTER*1 *> On entry, SIDE specifies whether the symmetric matrix A *> appears on the left or right in the operation as follows: -*> \endverbatim -*> \verbatim +*> *> SIDE = 'L' or 'l' C := alpha*A*B + beta*C, -*> \endverbatim -*> \verbatim +*> *> SIDE = 'R' or 'r' C := alpha*B*A + beta*C, *> \endverbatim *> @@ -60,12 +58,10 @@ *> On entry, UPLO specifies whether the upper or lower *> triangular part of the symmetric matrix A is to be *> referenced as follows: -*> \endverbatim -*> \verbatim +*> *> UPLO = 'U' or 'u' Only the upper triangular part of the *> symmetric matrix is to be referenced. -*> \endverbatim -*> \verbatim +*> *> UPLO = 'L' or 'l' Only the lower triangular part of the *> symmetric matrix is to be referenced. *> \endverbatim |