Vector.BrayCurtisDistance<T> Method

Returns the Bray-Curtis distance between two vectors.

DefinitionPermalink

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public static T BrayCurtisDistance<T>(
	Vector<T> left,
	Vector<T> right
)

ParametersPermalink

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

Type ParametersPermalink

T

Return ValuePermalink

T
The sum of the ratio of the sum of the differences between corresponding elements of left and right to their combined sum.

ExceptionsPermalink

ArgumentNullException

left is null.

-or-

right is null.

DimensionMismatchException

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

See AlsoPermalink