petsc-3.7.1 2016-05-15
Report Typos and Errors

VecMTDot

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

Synopsis

#include "petscvec.h"   
PetscErrorCode  VecMTDot(Vec x,PetscInt nv,const Vec y[],PetscScalar val[])
Collective on Vec Many br

Input Parameters

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

Output Parameter

val -array of the dot products Many br

Notes for Users of Complex Numbers

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

Use VecMDot() for the inner product Many br

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

Many br

See Also

VecMDot(), VecTDot()

Level:intermediate
Location:
src/vec/vec/interface/rvector.c
Index of all Vec routines
Table of Contents for all manual pages
Index of all manual pages