summaryrefslogtreecommitdiff
path: root/BLAS/SRC/cher2k.f
diff options
context:
space:
mode:
Diffstat (limited to 'BLAS/SRC/cher2k.f')
-rw-r--r--BLAS/SRC/cher2k.f12
1 files changed, 4 insertions, 8 deletions
diff --git a/BLAS/SRC/cher2k.f b/BLAS/SRC/cher2k.f
index 3a386fc8..9ba1295d 100644
--- a/BLAS/SRC/cher2k.f
+++ b/BLAS/SRC/cher2k.f
@@ -49,12 +49,10 @@
*> On entry, UPLO specifies whether the upper or lower
*> triangular part of the array C is to be referenced as
*> follows:
-*> \endverbatim
-*> \verbatim
+*>
*> UPLO = 'U' or 'u' Only the upper triangular part of C
*> is to be referenced.
-*> \endverbatim
-*> \verbatim
+*>
*> UPLO = 'L' or 'l' Only the lower triangular part of C
*> is to be referenced.
*> \endverbatim
@@ -64,13 +62,11 @@
*> TRANS is CHARACTER*1
*> On entry, TRANS specifies the operation to be performed as
*> follows:
-*> \endverbatim
-*> \verbatim
+*>
*> TRANS = 'N' or 'n' C := alpha*A*B**H +
*> conjg( alpha )*B*A**H +
*> beta*C.
-*> \endverbatim
-*> \verbatim
+*>
*> TRANS = 'C' or 'c' C := alpha*A**H*B +
*> conjg( alpha )*B**H*A +
*> beta*C.