VecMTDot

Computes indefinite vector multiple dot products. That is, it does NOT use the complex conjugate.

Synopsis

int VecMTDot(int nv,Vec x,Vec *y,Scalar *val)
Collective on Vec

Input Parameters

nv - number of vectors
x - one vector
y - array of vectors. Note that vectors are pointers

Output Parameter

val -array of the dot products

Notes for Users of Complex Numbers

For complex vectors, VecMTDot() computes the indefinite form
     val = (x,y) = y^T x,
where y^T denotes the transpose of y.

Use VecMDot() for the inner product

     val = (x,y) = y^H x,
where y^H denotes the conjugate transpose of y.

Keywords

vector, dot product, inner product, non-Hermitian, multiple

See Also

VecMDot(), VecTDot()

Location: src/vec/interface/vector.c
Vector Index
Table of Contents