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

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


Vocabulary
math.blas.matrices

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


Outputs
alpha*x(*)ya blas-matrix-base


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

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

Definition