From 0d9e213c670ab0e68f17d68251412d53250108e1 Mon Sep 17 00:00:00 2001 From: julie Date: Mon, 31 Oct 2011 22:21:11 +0000 Subject: 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. --- BLAS/SRC/zgbmv.f | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'BLAS/SRC/zgbmv.f') diff --git a/BLAS/SRC/zgbmv.f b/BLAS/SRC/zgbmv.f index 216cb5b8..77aff8d0 100644 --- a/BLAS/SRC/zgbmv.f +++ b/BLAS/SRC/zgbmv.f @@ -44,14 +44,11 @@ *> TRANS is CHARACTER*1 *> On entry, TRANS specifies the operation to be performed as *> follows: -*> \endverbatim -*> \verbatim +*> *> TRANS = 'N' or 'n' y := alpha*A*x + beta*y. -*> \endverbatim -*> \verbatim +*> *> TRANS = 'T' or 't' y := alpha*A**T*x + beta*y. -*> \endverbatim -*> \verbatim +*> *> TRANS = 'C' or 'c' y := alpha*A**H*x + beta*y. *> \endverbatim *> @@ -103,8 +100,7 @@ *> are not referenced. *> The following program segment will transfer a band matrix *> from conventional full matrix storage to band storage: -*> \endverbatim -*> \verbatim +*> *> DO 20, J = 1, N *> K = KU + 1 - J *> DO 10, I = MAX( 1, J - KU ), MIN( M, J + KL ) -- cgit v1.2.3