From 52a1f5bdc5d1e79c4ac252b6fcb9d76dab3b388b Mon Sep 17 00:00:00 2001 From: Nathan Krislock Date: Sun, 28 Sep 2014 14:30:45 -0500 Subject: [PATCH] Update linalg.rst Updated the documentation for `Base.LinAlg.BLAS.gemv!` based on: http://www.math.utah.edu/software/lapack/lapack-blas/dgemv.html --- doc/stdlib/linalg.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/stdlib/linalg.rst b/doc/stdlib/linalg.rst index 372784952b6a7..fdd1a22efeff8 100644 --- a/doc/stdlib/linalg.rst +++ b/doc/stdlib/linalg.rst @@ -719,8 +719,8 @@ Usually a function has 4 methods defined, one each for ``Float64``, .. function:: gemv!(tA, alpha, A, x, beta, y) - Update the vector ``y`` as ``alpha*A*x + beta*x`` or - ``alpha*A'x + beta*x`` according to ``tA`` (transpose ``A``). + Update the vector ``y`` as ``alpha*A*x + beta*y`` or + ``alpha*A'x + beta*y`` according to ``tA`` (transpose ``A``). Returns the updated ``y``. .. function:: gemv(tA, alpha, A, x)