summaryrefslogtreecommitdiff
path: root/SRC/chfrk.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/chfrk.f')
-rw-r--r--SRC/chfrk.f8
1 files changed, 4 insertions, 4 deletions
diff --git a/SRC/chfrk.f b/SRC/chfrk.f
index 8e85bfc5..07b909a9 100644
--- a/SRC/chfrk.f
+++ b/SRC/chfrk.f
@@ -26,11 +26,11 @@
*
* CHFRK performs one of the Hermitian rank--k operations
*
-* C := alpha*A*conjg( A' ) + beta*C,
+* C := alpha*A*A**H + beta*C,
*
* or
*
-* C := alpha*conjg( A' )*A + beta*C,
+* C := alpha*A**H*A + beta*C,
*
* where alpha and beta are real scalars, C is an n--by--n Hermitian
* matrix and A is an n--by--k matrix in the first case and a k--by--n
@@ -60,9 +60,9 @@
* On entry, TRANS specifies the operation to be performed as
* follows:
*
-* TRANS = 'N' or 'n' C := alpha*A*conjg( A' ) + beta*C.
+* TRANS = 'N' or 'n' C := alpha*A*A**H + beta*C.
*
-* TRANS = 'C' or 'c' C := alpha*conjg( A' )*A + beta*C.
+* TRANS = 'C' or 'c' C := alpha*A**H*A + beta*C.
*
* Unchanged on exit.
*