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

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


Vocabulary
math.blas.matrices

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


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


Word description
Calculate the conjugate 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 xGERC routines in BLAS.

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

Definition