Vector.CorrelationDistance<T> Method

Returns a distance that is a function of the correlation between two vectors.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static double CorrelationDistance<T>(
	Vector<T> left,
	Vector<T> right
)

Parameters

left  Vector<T>
The first Vector<T>.
right  Vector<T>
The second Vector<T>.

Type Parameters

T

Return Value

Double
The correlation between left and right scaled in such a way that perfect correlation corresponds to a value of 0, and perfect inverse correlation corresponds to a value of 1.

Exceptions

ArgumentNullException

left is null.

-or-

right is null.

DimensionMismatchExceptionThe length of left is not equal to the length of right.

See Also