M.V ( A x -- A.x )
Basic Linear Algebra Subroutines (BLAS) interface ยป BLAS interface matrix operations

Prev:n*M.V ( alpha A x -- alpha*A.x )
Next:n*V(*)V+M! ( alpha x y A -- A=alpha*x(*)y+A )


Vocabulary
math.blas.matrices

Inputs
Aa blas-matrix-base
xa blas-vector-base


Outputs
A.xa blas-vector-base


Word description
Calculate the matrix-vector product Ax and return a freshly allocated vector containing the result. The width of A must match the length of x. The length of the returned vector will match the height of A. Corresponds to the xGEMV routines in BLAS.

See also
n*M.V+n*V!, n*M.V+n*V, n*M.V

Definition