n*V(*)V+M ( alpha x y A -- alpha*x(*)y+A )
Basic Linear Algebra Subroutines (BLAS) interface » BLAS interface matrix operations

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


Vocabulary
math.blas.matrices

Inputs
alphaa number
xa blas-vector-base
ya blas-vector-base
Aa blas-matrix-base


Outputs
alpha*x(*)y+Aa blas-matrix-base


Word description
Calculate the outer product αx⊗y + A and return a freshly allocated matrix containing the result. The width of A must match the length of y, and its height must match the length of x. The returned matrix will have the same dimensions as A. Corresponds to the xGER and xGERU routines in BLAS.

See also
n*V(*)V+M!, n*V(*)Vconj+M!, n*V(*)Vconj+M, n*V(*)V, n*V(*)Vconj, V(*), V(*)conj, V., V.conj

Definition


: n*V(*)V+M ( alpha x y A -- alpha*x(*)y+A ) clone n*V(*)V+M! ;