summaryrefslogtreecommitdiff
path: root/BLAS/SRC/dspr.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-04-02 11:46:46 +0000
committerjulie <julielangou@users.noreply.github.com>2011-04-02 11:46:46 +0000
commitd9d50d133bdf00870f37a31faefea58f0926a0a6 (patch)
treeeedf9e8992fc27e42ce5e71d7e7bf3dc40fc736c /BLAS/SRC/dspr.f
parentf2953573ede24d7f8c01fdb18de48f65f00a9943 (diff)
downloadlapack-d9d50d133bdf00870f37a31faefea58f0926a0a6.tar.gz
lapack-d9d50d133bdf00870f37a31faefea58f0926a0a6.tar.bz2
lapack-d9d50d133bdf00870f37a31faefea58f0926a0a6.zip
First pass for BLAS to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'BLAS/SRC/dspr.f')
-rw-r--r--BLAS/SRC/dspr.f2
1 files changed, 1 insertions, 1 deletions
diff --git a/BLAS/SRC/dspr.f b/BLAS/SRC/dspr.f
index 538e4f76..64567fc7 100644
--- a/BLAS/SRC/dspr.f
+++ b/BLAS/SRC/dspr.f
@@ -13,7 +13,7 @@
*
* DSPR performs the symmetric rank 1 operation
*
-* A := alpha*x*x' + A,
+* A := alpha*x*x**T + A,
*
* where alpha is a real scalar, x is an n element vector and A is an
* n by n symmetric matrix, supplied in packed form.