Click or drag to resize

NMathFunctionsConjDot(DoubleComplexVector, DoubleComplexVector) Method

Calculates the conjugate dot product of two vectors.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplex ConjDot(
	DoubleComplexVector v,
	DoubleComplexVector w
)

Parameters

v  DoubleComplexVector
A vector.
w  DoubleComplexVector
A vector.

Return Value

DoubleComplex
The conjugate dot product of v and w.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if v and w have different lengths.
InvalidArgumentException Thrown if v or w has zero length.
Remarks
d = conj(v[0])*w[0] + conj(v[1])*w[1]...
See Also