Vector<T>.ConjugateDotProduct Method

Returns the dot product of this vector with another vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual T ConjugateDotProduct(
	Vector<T> vector
)

Parameters

vector  Vector<T>
The second vector.

Return Value

T
The conjugate dot product of the two vectors.

Exceptions

ArgumentNullExceptionvector is null.
DimensionMismatchException The length of vector does not equal the length of this instance.

See Also